From c641d97d18a93c89e82b76029d9d5b637cdd5670 Mon Sep 17 00:00:00 2001 From: haixuanTao Date: Wed, 3 Apr 2024 11:58:26 +0200 Subject: [PATCH] Increase the wait time for the daemon for the CI --- examples/multiple-daemons/run.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 } }