Browse Source

cmd: Only stop admin server on signal if it exists (fix #3470)

master
Matthew Holt 5 years ago
parent
commit
83551edf3e
No known key found for this signature in database GPG Key ID: 2A349DD577D586A5
  1. 2
      sigtrap.go

2
sigtrap.go

@ -69,6 +69,7 @@ func gracefulStop(sigName string) {
exitCode = ExitCodeFailedQuit
}
if adminServer != nil {
err = stopAdminServer(adminServer)
if err != nil {
Log().Error("stopping admin endpoint",
@ -77,6 +78,7 @@ func gracefulStop(sigName string) {
exitCode = ExitCodeFailedQuit
}
}
}
// Exit codes. Generally, you should NOT
// automatically restart the process if the

Loading…
Cancel
Save