fix: \u003cnil\u003e log output when http server shutdown. (#2055)

This commit is contained in:
Zhang.Y
2022-06-29 21:35:01 +08:00
committed by GitHub
parent 76086fc717
commit 7da77302f4

View File

@@ -39,7 +39,7 @@ func start(host string, port int, handler http.Handler, run func(svr *http.Serve
}
waitForCalled := proc.AddWrapUpListener(func() {
if e := server.Shutdown(context.Background()); err != nil {
if e := server.Shutdown(context.Background()); e != nil {
logx.Error(e)
}
})