mirror of https://github.com/apache/activemq.git
fix for AMQ-600 to detect IOExceptions as being transport exceptions, not service exceptions (which are normally things like JMSException or security exceptions etc) and then disposing the connection eagerly - to free up the clientID so that the client can reconnect
git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@386610 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
2bc9a83508
commit
c559a8093f
|
@ -169,7 +169,12 @@ public abstract class AbstractConnection implements Service, Connection, Task, C
|
|||
}
|
||||
|
||||
public void serviceException(Throwable e) {
|
||||
if( !disposed && !inServiceException ) {
|
||||
// are we a transport exception such as not being able to dispatch
|
||||
// synchronously to a transport
|
||||
if (e instanceof IOException) {
|
||||
serviceTransportException((IOException) e);
|
||||
}
|
||||
else if( !disposed && !inServiceException ) {
|
||||
inServiceException = true;
|
||||
try {
|
||||
serviceLog.info("Async error occurred: "+e,e);
|
||||
|
|
Loading…
Reference in New Issue