Skip to content

Commit

Permalink
Use minimal one worker for each ZRuntime as the default value
Browse files Browse the repository at this point in the history
  • Loading branch information
YuanYuYuan committed Apr 2, 2024
1 parent 02d4783 commit fb9bfe4
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 @@ -233,11 +233,11 @@ impl ZRuntimeConfig {
impl Default for ZRuntimeConfig {
fn default() -> Self {
Self {
application_threads: 2,
acceptor_threads: 2,
tx_threads: 2,
rx_threads: 2,
net_threads: 2,
application_threads: 1,
acceptor_threads: 1,
tx_threads: 1,
rx_threads: 1,
net_threads: 1,
}
}
}
Expand Down

0 comments on commit fb9bfe4

Please sign in to comment.