Add missing webob to exc

Part of bug 1078062

Change-Id: I05910f6d2dea7af51f1fe35d7efa6006dfef02bf
This commit is contained in:
Yun Mao 2012-11-12 14:52:02 -05:00
parent 6a63baadae
commit d6d0a67c5c
1 changed files with 2 additions and 1 deletions

View File

@ -43,7 +43,8 @@ class DeferredDeleteController(wsgi.Controller):
try:
self.compute_api.restore(context, instance)
except exception.QuotaError as error:
raise exc.HTTPRequestEntityTooLarge(explanation=unicode(error),
raise webob.exc.HTTPRequestEntityTooLarge(
explanation=unicode(error),
headers={'Retry-After': 0})
except exception.InstanceInvalidState as state_error:
common.raise_http_conflict_for_instance_invalid_state(state_error,