mirror of https://github.com/apache/activemq.git
git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@675463 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
f4012c5098
commit
e233801bb3
|
@ -186,7 +186,12 @@ public class TcpTransport extends TransportThreadSupport implements Transport, S
|
|||
} catch (IOException e) {
|
||||
stoppedLatch.get().countDown();
|
||||
onException(e);
|
||||
} finally {
|
||||
} catch (Throwable e){
|
||||
stoppedLatch.get().countDown();
|
||||
IOException ioe=new IOException("Unexpected error occured");
|
||||
ioe.initCause(e);
|
||||
onException(ioe);
|
||||
}finally {
|
||||
stoppedLatch.get().countDown();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue