Skip to content

Commit

Permalink
Merge pull request #2440 from fawhgb/rm-fileplan-caching-issue
Browse files Browse the repository at this point in the history
Fixes the caching issue by returning a copy of the set instead of the Set
  • Loading branch information
code4uuuu committed May 2, 2024
2 parents c4ac762 + 440e31f commit 88c1c84
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ public boolean handle(Pair<Long, NodeRef> nodePair)
}
else
{
return rmContainerCacheManager.get(storeRef);
return new HashSet<>(rmContainerCacheManager.get(storeRef));
}

return results;
Expand Down

0 comments on commit 88c1c84

Please sign in to comment.