diff --git a/main.go b/main.go index 2082198..6a51a29 100644 --- a/main.go +++ b/main.go @@ -82,7 +82,7 @@ func init() { } func main() { - gracehttp.Serve([]*http.Server{ + log.Fatal(gracehttp.Serve([]*http.Server{ {Addr: listen, Handler: mux()}, - }...) + }...)) }