Skip to content

Commit

Permalink
Increase the wait time for the daemon for the CI
Browse files Browse the repository at this point in the history
  • Loading branch information
haixuanTao committed Apr 3, 2024
1 parent c5a1c1a commit c641d97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/multiple-daemons/run.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
}
Expand Down

0 comments on commit c641d97

Please sign in to comment.