internal: fix listen attempt on shutdown

Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
Jens Langhammer
2022-01-03 12:36:11 +01:00
parent 924f6f104a
commit c741c13132
3 changed files with 10 additions and 13 deletions

View File

@ -73,17 +73,14 @@ func main() {
}
}
go web.RunMetricsServer()
for {
go attemptStartBackend(g)
ws.Start()
<-ex
running = false
l.Info("shutting down gunicorn")
go g.Kill()
l.Info("shutting down webserver")
go ws.Shutdown()
}
go attemptStartBackend(g)
ws.Start()
<-ex
running = false
l.Info("shutting down gunicorn")
go g.Kill()
l.Info("shutting down webserver")
go ws.Shutdown()
}
func attemptStartBackend(g *gounicorn.GoUnicorn) {