dont return 200 during shutdown (#4167)

Signed-off-by: Chris O'Haver <cohaver@infoblox.com>
This commit is contained in:
Chris O'Haver
2020-10-01 10:13:23 -04:00
committed by GitHub
parent a0f7120864
commit b1a69f70bd

View File

@@ -43,6 +43,13 @@ func (rd *ready) onStartup() error {
rd.Unlock()
rd.mux.HandleFunc("/ready", func(w http.ResponseWriter, _ *http.Request) {
rd.Lock()
defer rd.Unlock()
if !rd.done {
w.WriteHeader(http.StatusServiceUnavailable)
io.WriteString(w, "Shutting down")
return
}
ok, todo := plugins.Ready()
if ok {
w.WriteHeader(http.StatusOK)