sigtrap_posix: add missing comma to SIGTERM info (#4078)

Was missing a comma, so added it
pull/4050/head
Simão Gomes Viana 2021-03-29 19:04:22 +02:00 committed by GitHub
parent 911c8a371a
commit a6bc58153b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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: