diff --git a/ehr/api-src/org/labkey/api/ehr/SharedEHRUpgradeCode.java b/ehr/api-src/org/labkey/api/ehr/SharedEHRUpgradeCode.java index 7a9cf6e0c..a4c0873a8 100644 --- a/ehr/api-src/org/labkey/api/ehr/SharedEHRUpgradeCode.java +++ b/ehr/api-src/org/labkey/api/ehr/SharedEHRUpgradeCode.java @@ -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 diff --git a/ehr/src/org/labkey/ehr/EHRController.java b/ehr/src/org/labkey/ehr/EHRController.java index c7805f3d2..12d3aef2a 100644 --- a/ehr/src/org/labkey/ehr/EHRController.java +++ b/ehr/src/org/labkey/ehr/EHRController.java @@ -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()) {