Pedro Ruivo created ISPN-3100:
---------------------------------
Summary: CommandAwareRpcDispatcher Future Collactor does not respect the
timeout
Key: ISPN-3100
URL:
https://issues.jboss.org/browse/ISPN-3100
Project: Infinispan
Issue Type: Bug
Affects Versions: 5.3.0.Beta1
Reporter: Pedro Ruivo
Assignee: Pedro Ruivo
Fix For: 5.3.0.Final
In FutureCollactor:
{code}
while (expectedResponses > 0 && retval == null) {
try {
this.wait(timeout);
} catch (InterruptedException e) {
// reset interruption flag
Thread.currentThread().interrupt();
expectedResponses = -1;
}
}
{code}
the FutureCollactor will wait forever for the responses.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see:
http://www.atlassian.com/software/jira