Skip to content

Commit c819cb3

Browse files
committed
Bugfixes to prototype update action
1 parent a66fb92 commit c819cb3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

singlecell/src/org/labkey/singlecell/SingleCellController.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -646,9 +646,9 @@ public boolean handlePost(Object form, BindException errors) throws Exception
646646
}
647647

648648
String description = AbstractSingleCellHandler.getOutputDescription(params, _log, so.getFile(), null);
649-
toUpdate.add(new CaseInsensitiveHashMap<>(Map.of("rowid", so.getRowid(), "description", description)));
649+
toUpdate.add(new CaseInsensitiveHashMap<>(Map.of("rowid", so.getRowid(), "container", so.getContainer(), "description", description)));
650650

651-
if (toUpdate.size() % 250 == 0)
651+
if (toUpdate.size() % 200 == 0)
652652
{
653653
doUpdate(toUpdate, getUser(), getContainer());
654654
toUpdate.clear();

0 commit comments

Comments
 (0)