From c8c6fb04afe95df21a49e746d4e3f40dd9ea95d3 Mon Sep 17 00:00:00 2001 From: Mike Dilger Date: Tue, 27 Dec 2022 17:25:53 +1300 Subject: [PATCH] Increase size of to_minions() channel buffer --- src/globals.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/globals.rs b/src/globals.rs index e35a25f9..e8c43cbc 100644 --- a/src/globals.rs +++ b/src/globals.rs @@ -64,7 +64,7 @@ lazy_static! { pub static ref GLOBALS: Globals = { // Setup a communications channel from the Overlord to the Minions. - let (to_minions, _) = broadcast::channel(16); + let (to_minions, _) = broadcast::channel(256); // Setup a communications channel from the Minions to the Overlord. let (to_overlord, from_minions) = mpsc::unbounded_channel();