From 84c56e5aa9b331f963840b97c2d12c4395a3764d Mon Sep 17 00:00:00 2001 From: Thomas Farr Date: Tue, 8 Oct 2024 09:16:10 +1300 Subject: [PATCH] Fix build Signed-off-by: Thomas Farr --- yaml_test_runner/tests/common/client.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yaml_test_runner/tests/common/client.rs b/yaml_test_runner/tests/common/client.rs index 96412c72..aa3682c5 100644 --- a/yaml_test_runner/tests/common/client.rs +++ b/yaml_test_runner/tests/common/client.rs @@ -61,7 +61,7 @@ fn cluster_addr() -> String { /// Determines if Fiddler.exe proxy process is running fn running_proxy() -> bool { let mut system = sysinfo::System::new(); - system.refresh_processes(sysinfo::ProcessesToUpdate::All); + system.refresh_processes(sysinfo::ProcessesToUpdate::All, true); let running = system .processes_by_name(OsStr::new("Fiddler")) .next()