From abfacd0943c52b2597efb19bf64bfcfa97705985 Mon Sep 17 00:00:00 2001 From: Haixuan Xavier Tao Date: Thu, 14 Nov 2024 23:47:22 +0800 Subject: [PATCH] Update spawn.rs Co-authored-by: Philipp Oppermann --- binaries/daemon/src/spawn.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/binaries/daemon/src/spawn.rs b/binaries/daemon/src/spawn.rs index d45cabda..92b458bf 100644 --- a/binaries/daemon/src/spawn.rs +++ b/binaries/daemon/src/spawn.rs @@ -154,7 +154,7 @@ pub async fn spawn_node( } } - // Set the process group to 0 to ensure that the spawned process does not spawn immediately on CTRL-C + // Set the process group to 0 to ensure that the spawned process does not exit immediately on CTRL-C #[cfg(unix)] command.process_group(0);