feat: shorten shutdown timeout in development
Alan Pearce alan@alanpearce.eu
Wed, 19 Mar 2025 20:12:45 +0100
1 files changed, 6 insertions(+), 1 deletions(-)
jump to
M internal/server/server.go → internal/server/server.go
@@ -16,6 +16,8 @@ "golang.org/x/net/http2" "golang.org/x/net/http2/h2c" ) +var shutdownTimeout = 10 * time.Second + type Server struct { cfg *config.Config log *log.Logger @@ -81,10 +83,13 @@ func (s *Server) Stop() chan struct{} { s.log.Debug("stop called") idleConnsClosed := make(chan struct{}) + if s.cfg.Web.Environment == "development" { + shutdownTimeout = 1 * time.Second + } go func() { s.log.Debug("shutting down server") - ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second) + ctx, cancel := context.WithTimeout(context.Background(), shutdownTimeout) defer cancel() err := s.server.Shutdown(ctx) s.log.Debug("server shut down")