mirror of https://github.com/status-im/consul.git
agent: use http.StatusForbidden instead of 403
This commit is contained in:
parent
7e2bc1b411
commit
1a557ee9e9
|
@ -65,7 +65,7 @@ func (s *HTTPServer) EventFire(resp http.ResponseWriter, req *http.Request) (int
|
|||
// Try to fire the event
|
||||
if err := s.agent.UserEvent(dc, token, event); err != nil {
|
||||
if acl.IsErrPermissionDenied(err) {
|
||||
resp.WriteHeader(403)
|
||||
resp.WriteHeader(http.StatusForbidden) // 403
|
||||
fmt.Fprint(resp, acl.ErrPermissionDenied.Error())
|
||||
return nil, nil
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue