]
RH Bugzilla Integration commented on ISPN-4630:
-----------------------------------------------
Dave Stahl <dstahl(a)redhat.com> changed the Status of [bug
DistributedEntryRetriever throws NPE if iterator is closed before
processing all responses
------------------------------------------------------------------------------------------
Key: ISPN-4630
URL:
https://issues.jboss.org/browse/ISPN-4630
Project: Infinispan
Issue Type: Bug
Components: Core
Affects Versions: 7.0.0.Alpha5
Reporter: William Burns
Assignee: William Burns
Fix For: 7.0.0.Beta2
DistributedEntryRetriever itrerator needs to ignore responses from nodes if a iterator is
closed early or if a rehash occurs causing some redundant requests to be sent.
This was covered in a previous version but refactoring lost it somehow and instead the
code is using variables that cannot be null.
{code}
} else if (log.isTraceEnabled()) {
log.tracef("Ignoring values as identifier %s was marked as complete",
identifier);
}
{code}