agent: use http.StatusUnauthorized instead of 401

This commit is contained in:
Frank Schroeder 2017-08-23 16:28:18 +02:00 committed by Frank Schröder
parent 923f8e2364
commit 2e586be5aa
2 changed files with 2 additions and 2 deletions

View File

@ -16,7 +16,7 @@ type aclCreateResponse struct {
// ACLDisabled handles if ACL datacenter is not configured
func ACLDisabled(resp http.ResponseWriter, req *http.Request) (interface{}, error) {
resp.WriteHeader(401)
resp.WriteHeader(http.StatusUnauthorized) // 401
fmt.Fprint(resp, "ACL support disabled")
return nil, nil
}

View File

@ -11,7 +11,7 @@ import (
// coordinateDisabled handles all the endpoints when coordinates are not enabled,
// returning an error message.
func coordinateDisabled(resp http.ResponseWriter, req *http.Request) (interface{}, error) {
resp.WriteHeader(401)
resp.WriteHeader(http.StatusUnauthorized) // 401
fmt.Fprint(resp, "Coordinate support disabled")
return nil, nil
}