[openstack-dev] [cinder] gates broken by WebOb 1.5 release
Victor Stinner
vstinner at redhat.com
Mon Oct 12 08:43:52 UTC 2015
Hi,
WebOb 1.5 was released yesterday. test_misc of Cinder starts failing
with this release. I wrote this simple fix which should be enough to
repair it:
https://review.openstack.org/233528
"Fix test_misc for WebOb 1.5"
class ConvertedException(webob.exc.WSGIHTTPException):
- def __init__(self, code=0, title="", explanation=""):
+ def __init__(self, code=500, title="", explanation=""):
Victor
More information about the OpenStack-dev
mailing list