Bump max workers to 8

This commit is contained in:
Paul Hauner
2023-07-10 18:52:00 +10:00
parent 90a8f8a464
commit 1d84f941b5

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 = 4;
client_config.beacon_processor.max_workers = 8;
client_config
}