Remove the tokio thread name (#5650)

This commit is contained in:
Pierre Krieger
2020-04-15 21:49:53 +02:00
committed by GitHub
parent 20b11b1770
commit 1c7a3fe7d5
-1
View File
@@ -80,7 +80,6 @@ where
/// Build a tokio runtime with all features
pub fn build_runtime() -> std::result::Result<tokio::runtime::Runtime, std::io::Error> {
tokio::runtime::Builder::new()
.thread_name("main-tokio-")
.threaded_scheduler()
.on_thread_start(||{
TOKIO_THREADS_ALIVE.inc();