Update arbiter.rs

This commit is contained in:
Rob Ede 2020-11-24 16:14:39 +00:00 committed by GitHub
parent 8b2bd480bc
commit 1800e69a70
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -134,7 +134,7 @@ impl Arbiter {
.unbounded_send(SystemCommand::RegisterArbiter(id, arb)); .unbounded_send(SystemCommand::RegisterArbiter(id, arb));
// run loop // run loop
let _ = match rt.block_on(stop_rx).unwrap_or(1); let _ = rt.block_on(stop_rx).unwrap_or(1);
// unregister arbiter // unregister arbiter
let _ = System::current() let _ = System::current()