Reduce beacon processor cores to 4 for sims

This commit is contained in:
Paul Hauner
2023-07-11 09:35:41 +10:00
parent 0a3ffdf6d2
commit 40612b439c

View File

@@ -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
}