summaryrefslogtreecommitdiffstats
path: root/nova/api
diff options
context:
space:
mode:
authorMichael Gundlach <michael.gundlach@rackspace.com>2010-11-22 17:59:49 -0500
committerMichael Gundlach <michael.gundlach@rackspace.com>2010-11-22 17:59:49 -0500
commita19d0e294efac1fb7e8e3e45a286f6032172da23 (patch)
tree01e6dc90c311ed2ed45840edfae4575602db3f71 /nova/api
parentff9b3b49090773070439d37df3149727fc7d3988 (diff)
Rename cloudServersFault (rackspace branding) to computeFault. Fixes bug lp680285.
Diffstat (limited to 'nova/api')
-rw-r--r--nova/api/openstack/faults.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/api/openstack/faults.py b/nova/api/openstack/faults.py
index e69e51439..224a7ef0b 100644
--- a/nova/api/openstack/faults.py
+++ b/nova/api/openstack/faults.py
@@ -47,7 +47,7 @@ class Fault(webob.exc.HTTPException):
"""Generate a WSGI response based on the exception passed to ctor."""
# Replace the body with fault details.
code = self.wrapped_exc.status_int
- fault_name = self._fault_names.get(code, "cloudServersFault")
+ fault_name = self._fault_names.get(code, "computeFault")
fault_data = {
fault_name: {
'code': code,