Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Farr <[email protected]>
  • Loading branch information
Xtansia committed Oct 7, 2024
1 parent c772c2d commit 84c56e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yaml_test_runner/tests/common/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 84c56e5

Please sign in to comment.