diff --git a/crates/teloxide/src/dispatching/dispatcher.rs b/crates/teloxide/src/dispatching/dispatcher.rs index 56dc5f6e..2fe8216a 100644 --- a/crates/teloxide/src/dispatching/dispatcher.rs +++ b/crates/teloxide/src/dispatching/dispatcher.rs @@ -419,6 +419,7 @@ where scope.spawn(move || { let runtime = tokio::runtime::Builder::new_multi_thread() .thread_stack_size(self.stack_size) + .thread_name("teloxide-dispatcher-worker") .enable_all() .build() .unwrap();