From 74a71cee41a5a2f773d1bf290cfb1d9f88692e33 Mon Sep 17 00:00:00 2001 From: Andronik Ordian Date: Thu, 1 Jul 2021 20:31:47 +0200 Subject: [PATCH] revert channel sizes --- node/overseer/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/node/overseer/src/lib.rs b/node/overseer/src/lib.rs index f3eb6005b44b..f45637f67604 100644 --- a/node/overseer/src/lib.rs +++ b/node/overseer/src/lib.rs @@ -102,9 +102,9 @@ use polkadot_procmacro_overseer_subsystems_gen::AllSubsystemsGen; mod tests; // A capacity of bounded channels inside the overseer. -const CHANNEL_CAPACITY: usize = 128; +const CHANNEL_CAPACITY: usize = 1024; // The capacity of signal channels to subsystems. -const SIGNAL_CHANNEL_CAPACITY: usize = 16; +const SIGNAL_CHANNEL_CAPACITY: usize = 64; // A graceful `Overseer` teardown time delay. const STOP_DELAY: u64 = 1;