When those replicating connections are closed, the handler in RemotingConnectionImpl:
| private class ReplicatingConnectionFailureListener implements FailureListener
| {
| public boolean connectionFailed(final MessagingException me)
| {
| synchronized (RemotingConnectionImpl.this)
| {
| for (Channel channel : channels.values())
| {
| channel.replicatingChannelDead();
| }
| }
|
| return true;
| }
| }
|
Should be called.
This tells the live channels there is no more replicating channel and they should continue
without replicating.
Is this being called?
If not, then that's where you need to debug
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4208694#...
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&a...