Skip to content

Commit

Permalink
chore: Fix after merge from main
Browse files Browse the repository at this point in the history
  • Loading branch information
rholshausen committed Jul 19, 2024
1 parent 220f46f commit 6fade48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/rust/driver/src/grpc_plugin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -817,7 +817,7 @@ pub(crate) async fn start_plugin_process(manifest: &PactPluginManifest) -> anyho
let mut s = System::new();
s.refresh_processes();
if let Some(process) = s.process(Pid::from_u32(child_pid)) {
process.kill_with(Signal::Term);
process.kill();
} else {
warn!("Child process with PID {} was not found", child_pid);
}
Expand Down

0 comments on commit 6fade48

Please sign in to comment.