From e8b3f862a7f1eaf487e1bf697d476bcb959a874a Mon Sep 17 00:00:00 2001 From: gabriel-aranha-cw Date: Mon, 16 Dec 2024 18:50:32 -0300 Subject: [PATCH] fix: lint --- src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.rs b/src/config.rs index a220a62cf..57ee00884 100644 --- a/src/config.rs +++ b/src/config.rs @@ -150,7 +150,7 @@ impl CommonConfig { let async_id = ASYNC_ID.fetch_add(1, Ordering::SeqCst); if async_id <= num_async_threads { if cfg!(feature = "flamegraph") { - return "tokio-async".to_string() + return "tokio-async".to_string(); } else { return format!("tokio-async-{}", async_id); }