From 66dc82a7bac64c5bccab6d8700052ec7225a7ef8 Mon Sep 17 00:00:00 2001 From: Jeff Mitchell Date: Fri, 2 Dec 2022 13:59:37 -0500 Subject: [PATCH] Send message on dev mode SIGHUP so it doesn't just appear to have been swallowed --- internal/cmd/commands/dev/dev.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/internal/cmd/commands/dev/dev.go b/internal/cmd/commands/dev/dev.go index 839758dee3..7193106c0a 100644 --- a/internal/cmd/commands/dev/dev.go +++ b/internal/cmd/commands/dev/dev.go @@ -900,6 +900,9 @@ func (c *Command) Run(args []string) int { shutdownTriggerCount++ runShutdownLogic() + case <-c.SighupCh: + c.UI.Output("==> Boundary dev environment does not support configuration reloading, taking no action") + case <-c.SigUSR2Ch: buf := make([]byte, 32*1024*1024) n := runtime.Stack(buf[:], true)