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)