just catch Exception when failing to send abort
This commit is contained in:
parent
ce9e1689cb
commit
c8c8c8a085
1 changed files with 5 additions and 5 deletions
|
@ -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) -> {
|
||||||
|
|
Loading…
Reference in a new issue