From 40612b439c5187d4a632898eca6564e8cf039925 Mon Sep 17 00:00:00 2001 From: Paul Hauner Date: Tue, 11 Jul 2023 09:35:41 +1000 Subject: [PATCH] Reduce beacon processor cores to 4 for sims --- testing/node_test_rig/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/node_test_rig/src/lib.rs b/testing/node_test_rig/src/lib.rs index 3c064cabc8..2b1ee96700 100644 --- a/testing/node_test_rig/src/lib.rs +++ b/testing/node_test_rig/src/lib.rs @@ -111,7 +111,7 @@ pub fn testing_client_config() -> ClientConfig { // Specify a constant count of beacon processor workers. Having this number // too low can cause annoying HTTP timeouts, especially on Github runners // with 2 logical CPUs. - client_config.beacon_processor.max_workers = 8; + client_config.beacon_processor.max_workers = 4; client_config }