1
Fork 0
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:
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

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: