Skip to content
Snippets Groups Projects
Commit 98f35b28 authored by vkovtun's avatar vkovtun
Browse files

BIS-772: Fixing "Experiment has not been fetched" for exports.

parent ecf96359
No related branches found
No related tags found
1 merge request!40SSDM-13578 : 2PT : Database and V3 Implementation - include the new AFS "free"...
......@@ -139,7 +139,9 @@ class EntitiesFinder
final List<DataSetPermId> dataSetPermIds = permIds.stream().map(DataSetPermId::new)
.collect(Collectors.toList());
final DataSetFetchOptions fetchOptions = new DataSetFetchOptions();
fetchOptions.withSample().withContainer();
final SampleFetchOptions sampleFetchOptions = fetchOptions.withSample();
sampleFetchOptions.withContainer();
sampleFetchOptions.withExperiment().withProperties();
fetchOptions.withExperiment().withProject().withSpace();
fetchOptions.withType().withPropertyAssignments().withPropertyType();
fetchOptions.withProperties();
......
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