]
Pedro Ruivo updated ISPN-4508:
------------------------------
Status: Resolved (was: Pull Request Sent)
Fix Version/s: 7.0.0.Alpha5
Resolution: Done
Cluster Listener waits forever for listeners to complete with tx
completion
---------------------------------------------------------------------------
Key: ISPN-4508
URL:
https://issues.jboss.org/browse/ISPN-4508
Project: Infinispan
Issue Type: Bug
Security Level: Public(Everyone can see)
Components: Listeners
Affects Versions: 7.0.0.Alpha4
Reporter: William Burns
Assignee: William Burns
Fix For: 7.0.0.Alpha5
When a cluster listener is notified due to a tx completion we currently wait forever for
the listener notification to complete, we should time out instead as we do for non tx.
RemoteClusterListener.java:125
{code}
distExecService.submit(origin,
distExecService.createDistributedTaskBuilder(
new ClusterEventCallable(id,
eventsToSend)).timeout(Long.MAX_VALUE, TimeUnit.DAYS)
.build()).get();
{code}