perf: reduce monitor poll interval to 50ms for tighter jitter

This commit is contained in:
M1 2026-03-17 10:58:28 +04:00
parent bd3c33dda4
commit 1e3a5ff4d1
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}
}