From 2b5b4f6cb5c1c4fcdb3affbb54a0166dfaa05a1f Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Wed, 13 Aug 2025 12:14:03 +0000 Subject: [PATCH] fix dotnets process group --- backend/windmill-worker/src/common.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/windmill-worker/src/common.rs b/backend/windmill-worker/src/common.rs index 92cb0074de..a27adeddf6 100644 --- a/backend/windmill-worker/src/common.rs +++ b/backend/windmill-worker/src/common.rs @@ -653,7 +653,7 @@ pub async fn start_child_process( use process_wrap::tokio::*; let mut cmd = TokioCommandWrap::from(cmd); - if !*DISABLE_PROCESS_GROUP { + if !*DISABLE_PROCESS_GROUP || executable.starts_with("dotnet ") { #[cfg(unix)] { use process_wrap::tokio::ProcessGroup;