Skip to content

Commit

Permalink
Increase scouting delay and decrease api open delay
Browse files Browse the repository at this point in the history
  • Loading branch information
OlivierHecart committed Apr 26, 2024
1 parent faac7e8 commit f2dc481
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion commons/zenoh-config/src/defaults.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ pub const mode: WhatAmI = WhatAmI::Peer;
#[allow(dead_code)]
pub mod scouting {
pub const timeout: u64 = 3000;
pub const delay: u64 = 200;
pub const delay: u64 = 500;
pub mod multicast {
pub const enabled: bool = true;
pub const address: ([u8; 4], u16) = ([224, 0, 0, 224], 7446);
Expand Down
2 changes: 1 addition & 1 deletion zenoh/src/session.rs
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ zconfigurable! {
pub(crate) static ref API_QUERY_RECEPTION_CHANNEL_SIZE: usize = 256;
pub(crate) static ref API_REPLY_EMISSION_CHANNEL_SIZE: usize = 256;
pub(crate) static ref API_REPLY_RECEPTION_CHANNEL_SIZE: usize = 256;
pub(crate) static ref API_OPEN_SESSION_DELAY: u64 = 500;
pub(crate) static ref API_OPEN_SESSION_DELAY: u64 = 200;
}

pub(crate) struct SessionState {
Expand Down

0 comments on commit f2dc481

Please sign in to comment.