Skip to content

Commit

Permalink
catch all throwables from dispatch request
Browse files Browse the repository at this point in the history
  • Loading branch information
adpi2 committed Dec 21, 2023
1 parent 57e71e9 commit d5608e5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public AbstractProtocolServer(InputStream input, OutputStream output, Logger log
requestSubject.observeOn(Schedulers.newThread()).subscribe(request -> {
try {
this.dispatchRequest(request);
} catch (Exception e) {
} catch (Throwable e) {
logger.log(Level.SEVERE, String.format("Dispatch debug protocol error: %s", e.toString()), e);
}
});
Expand Down

0 comments on commit d5608e5

Please sign in to comment.