Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ehr/api-src/org/labkey/api/ehr/SharedEHRUpgradeCode.java
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ private void importFile(TsvImport tsvImport, Container container, User user) thr
auditEvent = createTransactionAuditEvent(container, QueryService.AuditAction.INSERT);

AbstractQueryImportAction.importData(loader, table, updateService, QueryUpdateService.InsertOption.INSERT,
new HashMap<>(), errors, behaviorType, auditEvent, null, user, container, null);
new HashMap<>(), null, errors, behaviorType, auditEvent, null, user, container, null);
}

private static class TsvImport
Expand Down
2 changes: 1 addition & 1 deletion ehr/src/org/labkey/ehr/EHRController.java
Original file line number Diff line number Diff line change
Expand Up @@ -1493,7 +1493,7 @@ private void loadFile(UserSchema schema, String tableName, Resource resource, bo
auditEvent = createTransactionAuditEvent(getContainer(), QueryService.AuditAction.INSERT);

AbstractQueryImportAction.importData(loader, table, updateService, QueryUpdateService.InsertOption.INSERT,
new HashMap<>(), batchErrors, behaviorType, auditEvent, null, getUser(), getContainer(), null);
new HashMap<>(), null, batchErrors, behaviorType, auditEvent, null, getUser(), getContainer(), null);

if (batchErrors.hasErrors())
{
Expand Down