mirror of
https://github.com/caddyserver/caddy.git
synced 2024-12-16 21:56:40 -05:00
cmd: Only stop admin server on signal if it exists (fix #3470)
This commit is contained in:
parent
e18c373064
commit
83551edf3e
1 changed files with 8 additions and 6 deletions
|
@ -69,6 +69,7 @@ func gracefulStop(sigName string) {
|
|||
exitCode = ExitCodeFailedQuit
|
||||
}
|
||||
|
||||
if adminServer != nil {
|
||||
err = stopAdminServer(adminServer)
|
||||
if err != nil {
|
||||
Log().Error("stopping admin endpoint",
|
||||
|
@ -76,6 +77,7 @@ func gracefulStop(sigName string) {
|
|||
zap.Error(err))
|
||||
exitCode = ExitCodeFailedQuit
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Exit codes. Generally, you should NOT
|
||||
|
|
Loading…
Reference in a new issue