mirror of https://github.com/apache/activemq.git
Close the transport if for some reason the connection cannot be accepted.
git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@376044 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
43d4e983dc
commit
7e672d4150
|
@ -35,6 +35,7 @@ import org.apache.activemq.transport.TransportServer;
|
|||
import org.apache.activemq.transport.discovery.DiscoveryAgent;
|
||||
import org.apache.activemq.transport.discovery.DiscoveryAgentFactory;
|
||||
import org.apache.activemq.util.ServiceStopper;
|
||||
import org.apache.activemq.util.ServiceSupport;
|
||||
import org.apache.commons.logging.Log;
|
||||
import org.apache.commons.logging.LogFactory;
|
||||
|
||||
|
@ -128,6 +129,7 @@ public class TransportConnector implements Connector {
|
|||
connection.start();
|
||||
}
|
||||
catch (Exception e) {
|
||||
ServiceSupport.dispose(transport);
|
||||
onAcceptError(e);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue