Skip to content

Commit 8af4f20

Browse files
committed
Jackson cannot serialize unmodifiableCollection
1 parent 2105d24 commit 8af4f20

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

SequenceAnalysis/src/org/labkey/sequenceanalysis/pipeline/SequenceJob.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ public SequenceJob(String providerName, Container c, User u, @Nullable String jo
138138
writeParameters(params);
139139

140140
_folderFileRoot = c.isWorkbook() ? PipelineService.get().findPipelineRoot(c.getParent()) : pipeRoot;
141-
_dockerVolumes = SequencePipelineService.get().getDockerVolumes(c);
141+
_dockerVolumes = new HashSet<>(SequencePipelineService.get().getDockerVolumes(c));
142142

143143
setLogFile(_getLogFile());
144144
writeSupportToDisk();

0 commit comments

Comments
 (0)