Skip to content
Merged
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
3 changes: 2 additions & 1 deletion mcc/src/org/labkey/mcc/etl/ZimsImportTask.java
Original file line numberDiff line numberDiff line change
Expand Up@@ -7,6 +7,7 @@
import org.labkey.api.data.CompareType;
import org.labkey.api.data.Container;
import org.labkey.api.data.PropertyManager;
import org.labkey.api.data.PropertyManager.WritablePropertyMap;
import org.labkey.api.data.SimpleFilter;
import org.labkey.api.data.TableInfo;
import org.labkey.api.data.TableSelector;
Expand DownExpand Up@@ -231,7 +232,7 @@ private void insertDatasetRecords(PipelineJob job, List<Map<String, Object>> toI

public static void saveLastRun(Container container, Date jobStart)
{
PropertyManager.PropertyMap map = PropertyManager.getWritableProperties(container, PROP_CATEGORY, true);
WritablePropertyMap map = PropertyManager.getWritableProperties(container, PROP_CATEGORY, true);
if (jobStart != null)
{
map.put(lastRunTime, String.valueOf(jobStart.getTime()));
Expand Down