perf: reduce monitor poll interval to 50ms for tighter jitter
This commit is contained in:
parent
bd3c33dda4
commit
1e3a5ff4d1
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue