chore(agent): fix clippy unused mut on non-linux process list

This commit is contained in:
jasonwitty 2025-08-26 00:22:29 -07:00
parent 322981ada7
commit f37b8d9ff4

View File

@ -444,7 +444,7 @@ pub async fn collect_processes_all(state: &AppState) -> ProcessesPayload {
// Sleep briefly to allow cpu deltas to accumulate; 200-250ms is typical; we keep 200ms to lower agent overhead. // Sleep briefly to allow cpu deltas to accumulate; 200-250ms is typical; we keep 200ms to lower agent overhead.
sleep(Duration::from_millis(delay_ms.min(500))).await; sleep(Duration::from_millis(delay_ms.min(500))).await;
// Second refresh: only CPU counters (lighter than full everything) to reduce overhead. // Second refresh: only CPU counters (lighter than full everything) to reduce overhead.
let (total_count, mut procs) = { let (total_count, procs) = {
let mut sys = state.sys.lock().await; let mut sys = state.sys.lock().await;
// Build a lightweight refresh kind: only CPU times. // Build a lightweight refresh kind: only CPU times.
let cpu_only = ProcessRefreshKind::nothing().with_cpu(); let cpu_only = ProcessRefreshKind::nothing().with_cpu();