diff --git a/apps/monitor/src/main.rs b/apps/monitor/src/main.rs index 11e9198..36e797d 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(10)).await; + sleep(Duration::from_secs(1)).await; } }