Skip to content

Commit 7396d6f

Browse files
committed
Use correct method for list deserialization
1 parent 5106e7e commit 7396d6f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

SequenceAnalysis/src/org/labkey/sequenceanalysis/run/variant/WhatsHapStep.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ public void init(PipelineJob job, SequenceAnalysisJobSupport support, List<Seque
110110

111111
private List<File> getCachedBams() throws PipelineJobException
112112
{
113-
List<Long> cachedFiles = getPipelineCtx().getSequenceSupport().getCachedObject(CACHE_KEY, PipelineJob.createObjectMapper().getTypeFactory().constructParametricType(List.class, Long.class));
113+
List<Long> cachedFiles = getPipelineCtx().getSequenceSupport().getCachedObject(CACHE_KEY, PipelineJob.createObjectMapper().getTypeFactory().constructCollectionType(List.class, Long.class));
114114

115115
return cachedFiles.stream().map(x -> getPipelineCtx().getSequenceSupport().getCachedData(x)).toList();
116116
}

0 commit comments

Comments
 (0)