From fd26af2677fe47ae8fedbbdf65166b39428dec84 Mon Sep 17 00:00:00 2001 From: Simon Zolin Date: Wed, 20 Nov 2019 18:25:27 +0300 Subject: [PATCH] * minor --- home/home.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/home/home.go b/home/home.go index f9257002..cf407a00 100644 --- a/home/home.go +++ b/home/home.go @@ -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