diff --git a/actix-rt/src/arbiter.rs b/actix-rt/src/arbiter.rs index 15e41d68..9a5f1f93 100644 --- a/actix-rt/src/arbiter.rs +++ b/actix-rt/src/arbiter.rs @@ -134,7 +134,7 @@ impl Arbiter { .unbounded_send(SystemCommand::RegisterArbiter(id, arb)); // run loop - let _ = match rt.block_on(stop_rx).unwrap_or(1); + let _ = rt.block_on(stop_rx).unwrap_or(1); // unregister arbiter let _ = System::current()