chore(agent): fix clippy needless_return for non-linux process collection
CI / build (ubuntu-latest) (push) Has been cancelled
CI / build (windows-latest) (push) Has been cancelled

This commit is contained in:
2025-08-24 12:52:56 -07:00
parent 8d48fa4c3b
commit ce59dd9dfe
+1 -1
View File
@@ -452,6 +452,6 @@ pub async fn collect_processes_all(state: &AppState) -> ProcessesPayload {
let mut cache = state.cache_processes.lock().await;
cache.set(payload.clone());
}
return payload;
payload
}
}