Skip to content

Commit d5608e5

Browse files
committed
catch all throwables from dispatch request
1 parent 57e71e9 commit d5608e5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

com.microsoft.java.debug.core/src/main/java/com/microsoft/java/debug/core/protocol/AbstractProtocolServer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public AbstractProtocolServer(InputStream input, OutputStream output, Logger log
7777
requestSubject.observeOn(Schedulers.newThread()).subscribe(request -> {
7878
try {
7979
this.dispatchRequest(request);
80-
} catch (Exception e) {
80+
} catch (Throwable e) {
8181
logger.log(Level.SEVERE, String.format("Dispatch debug protocol error: %s", e.toString()), e);
8282
}
8383
});

0 commit comments

Comments
 (0)