From cdd3bbea93d9839fb63be5adb9f3d3c57de909a1 Mon Sep 17 00:00:00 2001 From: Adam <24621027+adoyle0@users.noreply.github.com> Date: Sat, 27 Apr 2024 00:28:40 -0400 Subject: [PATCH] longer delay --- examples/client.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/client.rs b/examples/client.rs index 5dd988e..0201dab 100644 --- a/examples/client.rs +++ b/examples/client.rs @@ -23,7 +23,7 @@ async fn read_stdin(tx: futures_channel::mpsc::UnboundedSender) { #[tokio::main] async fn main() -> Result<(), Box> { // sleep to avoid racing the server on startup when using cargo watch - sleep(Duration::from_millis(200)).await; + sleep(Duration::from_millis(500)).await; let connect_addr = env::args() .nth(1)