Skip to content
Snippets Groups Projects
Commit 8b0128ad authored by felmer's avatar felmer
Browse files

SSDM-4988: Clearing sample cache at the end of DataSetTable.save method in...

SSDM-4988: Clearing sample cache at the end of DataSetTable.save method in order to reload samples and experiments in the next batch.

SVN: 38050
parent cc4cd5f2
No related branches found
No related tags found
No related merge requests found
......@@ -88,6 +88,11 @@ abstract class AbstractSampleIdentifierBusinessObject extends AbstractBusinessOb
}
return sample;
}
public void clearSampleCache()
{
sampleByIdentifierCache.clear();
}
protected SamplePE tryToGetSampleByIdentifier(final SampleIdentifier sampleIdentifier)
{
......
......@@ -1026,6 +1026,7 @@ public final class DataSetTable extends AbstractDataSetBusinessObject implements
}
dataChanged = false;
operationLog.info("State of data sets saved.");
clearSampleCache();
}
private void checkMandatoryProperties()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment