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)
|
os.Exit(ExitCodeForceQuit)
|
||||||
|
|
||||||
case syscall.SIGTERM:
|
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")
|
exitProcessFromSignal("SIGTERM")
|
||||||
|
|
||||||
case syscall.SIGUSR1:
|
case syscall.SIGUSR1:
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue