Change http status of AuthorizationException to 403
Closes elastic/elasticsearch#55 Original commit: elastic/x-pack-elasticsearch@23006f238b
This commit is contained in:
parent
fd568037bb
commit
ef48bf7c6e
|
@ -22,6 +22,6 @@ public class AuthorizationException extends org.elasticsearch.shield.SecurityExc
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public RestStatus status() {
|
public RestStatus status() {
|
||||||
return RestStatus.UNAUTHORIZED;
|
return RestStatus.FORBIDDEN;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue