From 38e8834a6bfe8b8bee49338f5484f32c44298e7c Mon Sep 17 00:00:00 2001 From: Val Alexander Date: Mon, 6 Jul 2026 19:52:38 -0500 Subject: [PATCH] chore(demo): silence job-control noise on demo shutdown disown the stub and server after backgrounding so the cleanup kill does not print 'Terminated' lines after the demo's closing summary. Signed-off-by: Val Alexander --- examples/demo/run-demo.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/examples/demo/run-demo.sh b/examples/demo/run-demo.sh index 66d2cf4..8c39c5c 100755 --- a/examples/demo/run-demo.sh +++ b/examples/demo/run-demo.sh @@ -114,6 +114,8 @@ STUB_PID=$! RUST_LOG=info "$ROOT/target/debug/coven-github" serve \ --config "$DEMO_DIR/config.toml" > "$DEMO_DIR/server.log" 2>&1 & SERVER_PID=$! +# Detach both from job control so shutdown doesn't print 'Terminated' noise. +disown "$STUB_PID" "$SERVER_PID" # ── Helpers ──────────────────────────────────────────────────────────────────