Skip to content

Commit 32a6d5f

Browse files
committed
Bug related to serializing HashMap
1 parent bffe350 commit 32a6d5f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

singlecell/src/org/labkey/singlecell/run/NimbleAlignmentStep.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ private File createNimbleBam(AlignmentOutputImpl output, Readset rs, List<File>
116116

117117
private File getCachedLoupeFile(Readset rs, boolean throwIfNotFound) throws PipelineJobException
118118
{
119-
Map<Long, Long> map = getPipelineCtx().getSequenceSupport().getCachedObject(CACHE_KEY, PipelineJob.createObjectMapper().getTypeFactory().constructParametricType(Map.class, Long.class, Long.class));
119+
Map<Long, Long> map = getPipelineCtx().getSequenceSupport().getCachedObject(CACHE_KEY, PipelineJob.createObjectMapper().getTypeFactory().constructParametricType(HashMap.class, Long.class, Long.class));
120120
Long dataId = map.get(rs.getReadsetId());
121121
if (dataId == null)
122122
{

0 commit comments

Comments
 (0)