mirror of
https://github.com/ncarlier/webhookd.git
synced 2025-04-06 15:35:55 +00:00
fix(): catch SIGTERM signal for clean shutdown
This commit is contained in:
parent
e7fac829aa
commit
5c01d87aa3
3
main.go
3
main.go
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue
Block a user