diff options
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/rr/cmd/serve.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/rr/cmd/serve.go b/cmd/rr/cmd/serve.go index c754be46..1e8f53b2 100644 --- a/cmd/rr/cmd/serve.go +++ b/cmd/rr/cmd/serve.go @@ -36,7 +36,7 @@ func init() { RunE: serveHandler, }) - signal.Notify(stopSignal, os.Interrupt, os.Kill, syscall.SIGTERM, syscall.SIGINT) + signal.Notify(stopSignal, os.Interrupt, syscall.SIGTERM, syscall.SIGINT) } func serveHandler(cmd *cobra.Command, args []string) error { |