summaryrefslogtreecommitdiffstats
path: root/nova/api
diff options
context:
space:
mode:
authorJohn Griffith <john.griffith@solidfire.com>2012-07-23 22:42:25 -0600
committerJohn Griffith <john.griffith@solidfire.com>2012-07-25 09:16:47 -0600
commit76c1fd11b73fd8516bbde20cb46f627b658d4a6d (patch)
treee9414028b2f4579deaa8029a988527f285e0eef1 /nova/api
parentb8aedb281f8e6cc8b1583640c31f5d52ce5e4eac (diff)
downloadnova-76c1fd11b73fd8516bbde20cb46f627b658d4a6d.tar.gz
nova-76c1fd11b73fd8516bbde20cb46f627b658d4a6d.tar.xz
nova-76c1fd11b73fd8516bbde20cb46f627b658d4a6d.zip
Check for exception codes in openstack API results
* Inspect all exceptions for code, not just nova.exceptions Originally the fault wrapper would only inspect an exception for status, header and safe attributes if it was a nova.exception. As a result, excecptions returned from Cinder were always being incorrectly interpretted/categorized as ComputeFaults (500). This results in tempest tests that expect exceptions such as 404 NotFound to fail. Now that we're checking all Exceptions the same way, there's no need for a specifying nova.exceptions or even doing the import. Change-Id: If49e364063d5288c81ce1557bddc6dcec3ec457e
Diffstat (limited to 'nova/api')
-rw-r--r--nova/api/openstack/__init__.py10
1 files changed, 6 insertions, 4 deletions
diff --git a/nova/api/openstack/__init__.py b/nova/api/openstack/__init__.py
index c1ce7ee94..a2f73e852 100644
--- a/nova/api/openstack/__init__.py
+++ b/nova/api/openstack/__init__.py
@@ -25,7 +25,6 @@ import webob.dec
import webob.exc
from nova.api.openstack import wsgi
-from nova import exception
from nova.openstack.common import log as logging
from nova import utils
from nova import wsgi as base_wsgi
@@ -47,8 +46,13 @@ class FaultWrapper(base_wsgi.Middleware):
return FaultWrapper._status_to_type.get(
status, webob.exc.HTTPInternalServerError)()
- def _error(self, inner, req, headers=None, status=500, safe=False):
+ def _error(self, inner, req):
LOG.exception(_("Caught error: %s"), unicode(inner))
+
+ safe = getattr(inner, 'safe', False)
+ headers = getattr(inner, 'headers', None)
+ status = getattr(inner, 'code', 500)
+
msg_dict = dict(url=req.url, status=status)
LOG.info(_("%(url)s returned with HTTP %(status)d") % msg_dict)
outer = self.status_to_type(status)
@@ -70,8 +74,6 @@ class FaultWrapper(base_wsgi.Middleware):
def __call__(self, req):
try:
return req.get_response(self.application)
- except exception.NovaException as ex:
- return self._error(ex, req, ex.headers, ex.code, ex.safe)
except Exception as ex:
return self._error(ex, req)