mirror of
https://github.com/coredns/coredns.git
synced 2025-11-17 01:12:16 -05:00
return standardized text for ready and health endpoint (#3195)
This commit is contained in:
@@ -42,7 +42,7 @@ func (h *health) OnStartup() error {
|
||||
h.mux.HandleFunc("/health", func(w http.ResponseWriter, r *http.Request) {
|
||||
// We're always healthy.
|
||||
w.WriteHeader(http.StatusOK)
|
||||
io.WriteString(w, "OK")
|
||||
io.WriteString(w, http.StatusText(http.StatusOK))
|
||||
return
|
||||
})
|
||||
|
||||
|
||||
@@ -31,7 +31,7 @@ func TestHealth(t *testing.T) {
|
||||
}
|
||||
response.Body.Close()
|
||||
|
||||
if string(content) != "OK" {
|
||||
if string(content) != http.StatusText(http.StatusOK) {
|
||||
t.Errorf("Invalid response body: expecting 'OK', got '%s'", string(content))
|
||||
}
|
||||
}
|
||||
|
||||
@@ -45,7 +45,7 @@ func (rd *ready) onStartup() error {
|
||||
ok, todo := plugins.Ready()
|
||||
if ok {
|
||||
w.WriteHeader(http.StatusOK)
|
||||
io.WriteString(w, "OK")
|
||||
io.WriteString(w, http.StatusText(http.StatusOK))
|
||||
return
|
||||
}
|
||||
log.Infof("Still waiting on: %q", todo)
|
||||
|
||||
Reference in New Issue
Block a user