This commit is contained in:
Leufolium 2024-05-24 00:04:14 +08:00
parent a54361d249
commit ceb46b5f38
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ func StartOfflineHttpServer(srv *http.Server, cfg *configcenter.DefaultConfig) {
ctx, cancel := context.WithTimeout(context.Background(), 1*time.Second) ctx, cancel := context.WithTimeout(context.Background(), 1*time.Second)
defer cancel() defer cancel()
if err := srv.Shutdown(ctx); err != nil { if err := srv.Shutdown(ctx); err != nil {
log.Fatal("Server Shutdown:", err) logger.Fatal("Server Shutdown:", err)
} }
select { select {