perf: reduce monitor poll interval to 50ms for tighter jitter
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user