diff --git a/examples/multiple-daemons/run.rs b/examples/multiple-daemons/run.rs index 4b1417cc4..bd0722135 100644 --- a/examples/multiple-daemons/run.rs +++ b/examples/multiple-daemons/run.rs @@ -55,7 +55,7 @@ async fn main() -> eyre::Result<()> { } else if retries > 20 { bail!("daemon not connected after {retries} retries"); } else { - std::thread::sleep(Duration::from_millis(100)); + std::thread::sleep(Duration::from_millis(500)); retries += 1 } }