This commit is contained in:
Simon Zolin 2019-11-20 18:25:27 +03:00
parent 1fc70cbc08
commit fd26af2677
1 changed files with 2 additions and 0 deletions

View File

@ -372,11 +372,13 @@ func cleanup() {
// Stop HTTP server, possibly waiting for all active connections to be closed
func stopHTTPServer() {
log.Info("Stopping HTTP server...")
config.httpsServer.shutdown = true
if config.httpsServer.server != nil {
config.httpsServer.server.Shutdown(context.TODO())
}
config.httpServer.Shutdown(context.TODO())
log.Info("Stopped HTTP server")
}
// This function is called before application exits