Merge pull request #83 from TimSimpsonR/500_on_volume_failure

Issue 500 if the volume fails to prov.
This commit is contained in:
Michael Basnight 2012-05-29 09:21:09 -07:00
commit dafe37d924

View File

@ -56,6 +56,9 @@ class BaseController(wsgi.Controller):
],
webob.exc.HTTPRequestEntityTooLarge: [
exception.OverLimit,
],
webob.exc.HTTPServerError: [
exceptions.VolumeCreationFailure
]
}