From c0ebfff664dd925e9e16d148239eba1ade0ade06 Mon Sep 17 00:00:00 2001 From: Luca Cominardi Date: Fri, 1 Dec 2023 10:28:53 +0100 Subject: [PATCH] Remove additional executor spawning (#605) --- zenoh/src/net/runtime/mod.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/zenoh/src/net/runtime/mod.rs b/zenoh/src/net/runtime/mod.rs index f9486ea59c..5599d1ed1e 100644 --- a/zenoh/src/net/runtime/mod.rs +++ b/zenoh/src/net/runtime/mod.rs @@ -84,8 +84,6 @@ impl Runtime { pub(crate) async fn init(config: Config) -> ZResult { log::debug!("Zenoh Rust API {}", GIT_VERSION); - // Make sure to have have enough threads spawned in the async futures executor - zasync_executor_init!(); let zid = *config.id();