fix(): catch SIGTERM signal for clean shutdown

This commit is contained in:
Nicolas Carlier 2019-01-09 10:24:35 +00:00
parent e7fac829aa
commit 5c01d87aa3

View File

@ -6,6 +6,7 @@ import (
"net/http"
"os"
"os/signal"
"syscall"
"time"
"github.com/ncarlier/webhookd/pkg/api"
@ -50,7 +51,7 @@ func main() {
done := make(chan bool)
quit := make(chan os.Signal, 1)
signal.Notify(quit, os.Interrupt)
signal.Notify(quit, os.Interrupt, syscall.SIGTERM)
go func() {
<-quit