From 9a9a58d52c97a64f95c1014be9fb8f97e9ab7981 Mon Sep 17 00:00:00 2001 From: Bojan Serafimov Date: Wed, 15 Jun 2022 09:49:07 -0400 Subject: [PATCH] Fmt --- pageserver/src/tenant_threads.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pageserver/src/tenant_threads.rs b/pageserver/src/tenant_threads.rs index bb825a37ab..e337ea5ab2 100644 --- a/pageserver/src/tenant_threads.rs +++ b/pageserver/src/tenant_threads.rs @@ -91,8 +91,8 @@ pub fn start_compaction_loop(tenantid: ZTenantId) -> Result<()> { pub fn init_tenant_task_pool() -> Result<()> { let runtime = tokio::runtime::Builder::new_multi_thread() .thread_name("tenant-task-worker") - .worker_threads(40) // Way more than necessary - .max_blocking_threads(100) // Way more than necessary + .worker_threads(40) // Way more than necessary + .max_blocking_threads(100) // Way more than necessary .enable_all() .build()?;