1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-03 17:17:19 +00:00

Restore graceful restart on SIGHUP (#10224)

Co-authored-by: Lauris BH <lauris@nix.lv>
This commit is contained in:
zeripath
2020-02-11 05:29:45 +00:00
committed by GitHub
parent b3255921af
commit 37892be635

View File

@ -110,8 +110,8 @@ func (g *Manager) handleSignals(ctx context.Context) {
case sig := <-signalChannel: case sig := <-signalChannel:
switch sig { switch sig {
case syscall.SIGHUP: case syscall.SIGHUP:
log.Info("PID: %d. Received SIGHUP. Attempting GracefulShutdown...", pid) log.Info("PID: %d. Received SIGHUP. Attempting GracefulRestart...", pid)
g.DoGracefulShutdown() g.DoGracefulRestart()
case syscall.SIGUSR1: case syscall.SIGUSR1:
log.Info("PID %d. Received SIGUSR1.", pid) log.Info("PID %d. Received SIGUSR1.", pid)
case syscall.SIGUSR2: case syscall.SIGUSR2: