Browse Source
sigtrap_posix: add missing comma to SIGTERM info (#4078)
Was missing a comma, so added it
master
Simão Gomes Viana
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
sigtrap_posix.go
|
@ -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: |
|
|