From 4a2497688e52f284db3fa8e0292f21a973fbdecd Mon Sep 17 00:00:00 2001 From: Dessalines Date: Mon, 7 Mar 2022 12:01:19 -0500 Subject: [PATCH] Up default worker_count to 64 --- config/defaults.hjson | 2 +- crates/utils/src/settings/structs.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/config/defaults.hjson b/config/defaults.hjson index ac732b20d..94e21d087 100644 --- a/config/defaults.hjson +++ b/config/defaults.hjson @@ -60,7 +60,7 @@ # (meaning remote communities will show content from arbitrary instances). strict_allowlist: true # Number of workers for sending outgoing activities. - worker_count: 16 + worker_count: 64 } captcha: { # Whether captcha is required for signup diff --git a/crates/utils/src/settings/structs.rs b/crates/utils/src/settings/structs.rs index 30f120544..7ef67e41e 100644 --- a/crates/utils/src/settings/structs.rs +++ b/crates/utils/src/settings/structs.rs @@ -131,7 +131,7 @@ pub struct FederationConfig { #[default(true)] pub strict_allowlist: bool, /// Number of workers for sending outgoing activities. - #[default(16)] + #[default(64)] pub worker_count: u64, }