From c6de8fc8e614d87d7b3b76040572388ba98650e6 Mon Sep 17 00:00:00 2001 From: Martin Robinson Date: Wed, 7 May 2025 21:37:27 +0200 Subject: [PATCH] constellation: Ignore `zombie_process` warning (#36904) `rust-analyzer` shows a `zombie_process` warning, but only on macOS as far as I can tell. This change ignores the warning here. We aren't currently in a position where we can reliably `wait()` on spawned processes, which needs to happen as part of a larger multiprocess / cleanup effort. Testing: No testing as this just ignores an LSP warning. Signed-off-by: Martin Robinson --- components/constellation/sandboxing.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/components/constellation/sandboxing.rs b/components/constellation/sandboxing.rs index 3738b4f288b..b4c6e7a9a39 100644 --- a/components/constellation/sandboxing.rs +++ b/components/constellation/sandboxing.rs @@ -159,6 +159,7 @@ pub fn spawn_multiprocess(content: UnprivilegedContent) -> Result