Increase server shutdown timeout

Entire-Checkpoint: cf3b472471bd
This commit is contained in:
2026-03-25 06:15:52 +01:00
parent bd7125a52e
commit a550344f13

View File

@@ -444,7 +444,7 @@ func (s *Server) Shutdown(ctx context.Context) {
select { select {
case <-done: case <-done:
case <-time.After(10 * time.Second): case <-time.After(60 * time.Second):
cclog.Warn("Shutdown deadline exceeded, forcing exit") cclog.Warn("Shutdown deadline exceeded, forcing exit")
} }
} }