Up default worker_count to 64

This commit is contained in:
Dessalines 2022-03-07 12:01:19 -05:00
parent aef2abb962
commit 4a2497688e
2 changed files with 2 additions and 2 deletions

View file

@ -60,7 +60,7 @@
# (meaning remote communities will show content from arbitrary instances). # (meaning remote communities will show content from arbitrary instances).
strict_allowlist: true strict_allowlist: true
# Number of workers for sending outgoing activities. # Number of workers for sending outgoing activities.
worker_count: 16 worker_count: 64
} }
captcha: { captcha: {
# Whether captcha is required for signup # Whether captcha is required for signup

View file

@ -131,7 +131,7 @@ pub struct FederationConfig {
#[default(true)] #[default(true)]
pub strict_allowlist: bool, pub strict_allowlist: bool,
/// Number of workers for sending outgoing activities. /// Number of workers for sending outgoing activities.
#[default(16)] #[default(64)]
pub worker_count: u64, pub worker_count: u64,
} }