Skip to content

Commit

Permalink
Bug fix: I/O reactor must handle all runtime exceptions when connecti…
Browse files Browse the repository at this point in the history
…ng to remote endpoints
  • Loading branch information
ok2c committed Nov 14, 2022
1 parent e59b7ad commit 064b84b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ private void processPendingConnectionRequests() {
}
try {
processConnectionRequest(socketChannel, sessionRequest);
} catch (final IOException | SecurityException ex) {
} catch (final IOException | RuntimeException ex) {
Closer.closeQuietly(socketChannel);
sessionRequest.failed(ex);
}
Expand Down

0 comments on commit 064b84b

Please sign in to comment.