summaryrefslogtreecommitdiffstats
path: root/cmd/platform/server.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/platform/server.go')
-rw-r--r--cmd/platform/server.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/platform/server.go b/cmd/platform/server.go
index 05e527462..6de14d63e 100644
--- a/cmd/platform/server.go
+++ b/cmd/platform/server.go
@@ -144,7 +144,7 @@ func runServer(configFileLocation string) {
// wait for kill signal before attempting to gracefully shutdown
// the running service
- c := make(chan os.Signal)
+ c := make(chan os.Signal, 1)
signal.Notify(c, os.Interrupt, syscall.SIGINT, syscall.SIGTERM)
<-c