From ca1db429f1374db8977e78401c77e9c70bd7ab9c Mon Sep 17 00:00:00 2001 From: Justin Gallardo Date: Fri, 10 Jan 2025 19:15:27 -0800 Subject: [PATCH] restart_wrapper: Be explicit about what signals are forwarded to entr Signed-off-by: Justin Gallardo --- restart_process/tilt-restart-wrapper.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/restart_process/tilt-restart-wrapper.go b/restart_process/tilt-restart-wrapper.go index 7aabbfadd..2846837f9 100644 --- a/restart_process/tilt-restart-wrapper.go +++ b/restart_process/tilt-restart-wrapper.go @@ -60,7 +60,7 @@ func main() { // Set up a signal forwarding handler sigs := make(chan os.Signal, 10) - signal.Notify(sigs) + signal.Notify(sigs, syscall.SIGKILL, syscall.SIGINT, syscall.SIGTERM) go func() { for sig := range sigs { if *verboseSignals {