Removed bad error message for health check status.

This commit is contained in:
James Phillips 2016-08-17 17:54:09 -07:00
parent 0bdbdf1ba8
commit 2aeaf35c41
No known key found for this signature in database
GPG Key ID: 77183E682AC5FC11
1 changed files with 1 additions and 1 deletions

View File

@ -273,7 +273,7 @@ func (s *HTTPServer) AgentRegisterService(resp http.ResponseWriter, req *http.Re
for _, check := range chkTypes { for _, check := range chkTypes {
if check.Status != "" && !structs.ValidStatus(check.Status) { if check.Status != "" && !structs.ValidStatus(check.Status) {
resp.WriteHeader(400) resp.WriteHeader(400)
resp.Write([]byte("Status for checks must 'passing', 'warning', 'critical', 'unknown'")) resp.Write([]byte("Status for checks must 'passing', 'warning', 'critical'"))
return nil, nil return nil, nil
} }
if !check.Valid() { if !check.Valid() {