Skip to content

Commit

Permalink
ISPN-9501 AbstractCacheStream.performOperationRehashAware() can hang
Browse files Browse the repository at this point in the history
  • Loading branch information
danberindei authored and wburns committed Sep 11, 2018
1 parent 1703fcd commit a446799
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -320,7 +320,7 @@ <R> R performOperationRehashAware(Function<? super S2, ? extends R> function, bo
csm.forgetOperation(id);
}
if (!remoteResults.lostSegments.isEmpty()) {
segmentsToProcess = remoteResults.lostSegments;
segmentsToProcess = IntSets.mutableCopyFrom(remoteResults.lostSegments);
remoteResults.lostSegments.clear();
getLog().tracef("Found %s lost segments for identifier %s", segmentsToProcess, id);
try {
Expand Down

0 comments on commit a446799

Please sign in to comment.