From 1c7a3fe7d5886b6f8ab6123cd50c514e43c9753c Mon Sep 17 00:00:00 2001 From: Pierre Krieger Date: Wed, 15 Apr 2020 21:49:53 +0200 Subject: [PATCH] Remove the tokio thread name (#5650) --- substrate/client/cli/src/runner.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/substrate/client/cli/src/runner.rs b/substrate/client/cli/src/runner.rs index c2c4f9739d..6ebe84f9c5 100644 --- a/substrate/client/cli/src/runner.rs +++ b/substrate/client/cli/src/runner.rs @@ -80,7 +80,6 @@ where /// Build a tokio runtime with all features pub fn build_runtime() -> std::result::Result { tokio::runtime::Builder::new() - .thread_name("main-tokio-") .threaded_scheduler() .on_thread_start(||{ TOKIO_THREADS_ALIVE.inc();