Skip to content

Commit

Permalink
chore(svc-ex): remove process group isolation
Browse files Browse the repository at this point in the history
  • Loading branch information
ozwaldorf committed May 21, 2024
1 parent d010e0e commit b4f667f
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions core/service-executor/src/service.rs
Original file line number Diff line number Diff line change
Expand Up @@ -372,11 +372,7 @@ async fn run_command(
let last_start = Instant::now();
tracing::debug!("Starting child process '{name}' with {command:?}");

let mut child = command
// Unique group id for the subprocess to isolate signals from the parent process
.process_group(0)
.spawn()
.expect("Command failed to start.");
let mut child = command.spawn().expect("Command failed to start.");

select! {
biased;
Expand Down

0 comments on commit b4f667f

Please sign in to comment.