From 1800e69a70866cb702af9d9942b737e029c8482c Mon Sep 17 00:00:00 2001 From: Rob Ede Date: Tue, 24 Nov 2020 16:14:39 +0000 Subject: [PATCH] Update arbiter.rs --- actix-rt/src/arbiter.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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()