just catch Exception when failing to send abort

This commit is contained in:
Vaci Koblizek 2020-11-12 20:36:53 +00:00
parent ce9e1689cb
commit c8c8c8a085

View file

@ -344,7 +344,7 @@ final class RpcState<VatId> {
FromException(exc, abort); FromException(exc, abort);
message.send(); message.send();
} }
catch (Throwable abortFailed) { catch (Exception ignored) {
} }
var onShutdown = this.connection.shutdown().handle((x, ioExc) -> { var onShutdown = this.connection.shutdown().handle((x, ioExc) -> {