mirror of https://github.com/apache/activemq.git
https://issues.apache.org/jira/browse/AMQ-3972 - failover transport - don't propagate exceptions for disposed transport
git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@1372770 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
38e5c0829a
commit
ce50e287ac
|
@ -265,7 +265,7 @@ public class FailoverTransport implements CompositeTransport {
|
|||
if (reconnectOk) {
|
||||
updated.remove(failedConnectTransportURI);
|
||||
reconnectTask.wakeup();
|
||||
} else {
|
||||
} else if (!isDisposed()) {
|
||||
propagateFailureToExceptionListener(e);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue