diff options
| author | Jenkins <jenkins@review.openstack.org> | 2012-03-23 18:58:29 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2012-03-23 18:58:29 +0000 |
| commit | 112af23d623cbbd68bf6e09a6e507170c57abe6b (patch) | |
| tree | c561104876cce24c7270f0a29c21c9883f2cc014 /nova/api | |
| parent | a5088664a7e433be15bac6405f361513aeacfe06 (diff) | |
| parent | 71172ac4bb190496c4ef668c3cba6fa9bf5834aa (diff) | |
| download | nova-112af23d623cbbd68bf6e09a6e507170c57abe6b.tar.gz nova-112af23d623cbbd68bf6e09a6e507170c57abe6b.tar.xz nova-112af23d623cbbd68bf6e09a6e507170c57abe6b.zip | |
Merge "Send a more appropriate error response for 403 in osapi"
Diffstat (limited to 'nova/api')
| -rw-r--r-- | nova/api/openstack/wsgi.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/api/openstack/wsgi.py b/nova/api/openstack/wsgi.py index 26c51d8f4..f65425246 100644 --- a/nova/api/openstack/wsgi.py +++ b/nova/api/openstack/wsgi.py @@ -1022,7 +1022,7 @@ class Fault(webob.exc.HTTPException): _fault_names = { 400: "badRequest", 401: "unauthorized", - 403: "resizeNotAllowed", + 403: "forbidden", 404: "itemNotFound", 405: "badMethod", 409: "conflictingRequest", |
