1
0
mirror of https://gitcode.com/gitea/gitea.git synced 2025-07-08 14:04:59 +08:00

Fix signal loop in graceful manager ()

This commit is contained in:
wxiaoguang
2022-06-12 21:50:18 +08:00
committed by GitHub
parent 796c4eca0b
commit a9dc9b06e4

@ -157,6 +157,7 @@ func (g *Manager) handleSignals(ctx context.Context) {
case <-ctx.Done():
log.Warn("PID: %d. Background context for manager closed - %v - Shutting down...", pid, ctx.Err())
g.DoGracefulShutdown()
return
}
}
}