diff --git a/cmd/mattermost/commands/server.go b/cmd/mattermost/commands/server.go index 66f47408cb..238018be3d 100644 --- a/cmd/mattermost/commands/server.go +++ b/cmd/mattermost/commands/server.go @@ -92,7 +92,7 @@ func runServer(configStore config.Store, disableConfigWatch bool, usedPlatform b // wait for kill signal before attempting to gracefully shutdown // the running service - signal.Notify(interruptChan, os.Interrupt, syscall.SIGINT, syscall.SIGTERM) + signal.Notify(interruptChan, syscall.SIGINT, syscall.SIGTERM) <-interruptChan return nil