Skip to content

Commit

Permalink
Let CI decide the minimal number of ZRuntime threads
Browse files Browse the repository at this point in the history
  • Loading branch information
YuanYuYuan committed Feb 2, 2024
1 parent 7606a61 commit de5c757
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions commons/zenoh-runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -192,11 +192,11 @@ impl ZRuntimeConfig {
impl Default for ZRuntimeConfig {
fn default() -> Self {
Self {
application_threads: 2,
reception_threads: 2,
tx_threads: 2,
rx_threads: 2,
net_threads: 2,
application_threads: 1,
reception_threads: 1,
tx_threads: 1,
rx_threads: 1,
net_threads: 1,
}
}
}

0 comments on commit de5c757

Please sign in to comment.