mirror of https://github.com/apache/activemq.git
AMQ-6820 - Properly handle ClosedChannelException
When a ClosedChannelException occurs inside SelectorSelection properly
call the transport listener onError() method to handle cleanup and
logging.
(cherry picked from commit 6e33507bf2
)
This commit is contained in:
parent
592b31343e
commit
3ef457125b
|
@ -44,7 +44,7 @@ public final class SelectorSelection {
|
|||
try {
|
||||
SelectorSelection.this.key = selectable.register(worker.selector, 0, SelectorSelection.this);
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
onError(e);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue