Skip to content

Commit 68677f3

Browse files
committed
Bugfix to mGAP ETL
1 parent 58723ec commit 68677f3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mGAP/src/org/labkey/mgap/columnTransforms/JBrowseSessionTransform.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,9 +190,9 @@ private void ensureLuceneData(String objectId)
190190
return;
191191
}
192192

193-
try (Results rs = ts1.getResults())
193+
try
194194
{
195-
String containerId = rs.getString(FieldKey.fromString("container"));
195+
String containerId = ts1.getObject(String.class);
196196

197197
Map<String, Object> row = new CaseInsensitiveHashMap<>();
198198
row.put("objectid", objectId);

0 commit comments

Comments
 (0)