diff --git a/apps/monitor/src/main.rs b/apps/monitor/src/main.rs index 36e797d..9f6b4ba 100644 --- a/apps/monitor/src/main.rs +++ b/apps/monitor/src/main.rs @@ -40,6 +40,6 @@ async fn main() -> Result<()> { Ok(n) => { if n > 0 { info!("Spawned {n} checks"); } }, Err(e) => error!("Check cycle failed: {e}"), } - sleep(Duration::from_secs(1)).await; + sleep(Duration::from_millis(50)).await; } }