Skip to content

Commit 76e4ebb

Browse files
committed
Issue 52098: Switch lookupByAlternateKey to enum with three choices
1 parent af1a494 commit 76e4ebb

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

ehr/api-src/org/labkey/api/ehr/SharedEHRUpgradeCode.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ private void importFile(TsvImport tsvImport, Container container, User user) thr
323323
auditEvent = createTransactionAuditEvent(container, QueryService.AuditAction.INSERT);
324324

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

329329
private static class TsvImport

ehr/src/org/labkey/ehr/EHRController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1493,7 +1493,7 @@ private void loadFile(UserSchema schema, String tableName, Resource resource, bo
14931493
auditEvent = createTransactionAuditEvent(getContainer(), QueryService.AuditAction.INSERT);
14941494

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

14981498
if (batchErrors.hasErrors())
14991499
{

0 commit comments

Comments
 (0)