From ebcbc1a908961acf719a1b7d38ea6d1681328cd4 Mon Sep 17 00:00:00 2001 From: yuanyuyuan Date: Fri, 2 Feb 2024 11:57:25 +0800 Subject: [PATCH] Revert "Let CI decide the minimal number of ZRuntime threads" since this fail This reverts commit de5c757dd23b89aeb86e890f34898db841eb3557. --- commons/zenoh-runtime/src/lib.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/commons/zenoh-runtime/src/lib.rs b/commons/zenoh-runtime/src/lib.rs index 8283e8c8a5..eabb10e048 100644 --- a/commons/zenoh-runtime/src/lib.rs +++ b/commons/zenoh-runtime/src/lib.rs @@ -192,11 +192,11 @@ impl ZRuntimeConfig { impl Default for ZRuntimeConfig { fn default() -> Self { Self { - application_threads: 1, - reception_threads: 1, - tx_threads: 1, - rx_threads: 1, - net_threads: 1, + application_threads: 2, + reception_threads: 2, + tx_threads: 2, + rx_threads: 2, + net_threads: 2, } } }