mirror of
https://github.com/caddyserver/caddy.git
synced 2024-12-16 21:56:40 -05:00
sigtrap_posix: add missing comma to SIGTERM info (#4078)
Was missing a comma, so added it
This commit is contained in:
parent
911c8a371a
commit
a6bc58153b
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ func trapSignalsPosix() {
|
|||
os.Exit(ExitCodeForceQuit)
|
||||
|
||||
case syscall.SIGTERM:
|
||||
Log().Info("shutting down apps then terminating", zap.String("signal", "SIGTERM"))
|
||||
Log().Info("shutting down apps, then terminating", zap.String("signal", "SIGTERM"))
|
||||
exitProcessFromSignal("SIGTERM")
|
||||
|
||||
case syscall.SIGUSR1:
|
||||
|
|
Loading…
Reference in a new issue