summaryrefslogtreecommitdiffstats
path: root/keystone/common/wsgi.py
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2013-08-01 15:56:49 +0000
committerGerrit Code Review <review@openstack.org>2013-08-01 15:56:49 +0000
commit3cb2c95b162f4fb0b3b61564c8962ac592a37524 (patch)
tree763888df27e4b36e3edca1d330e7db3962342e5e /keystone/common/wsgi.py
parentf1ac78c8992432e5f6d5c29f24f202870cb14a97 (diff)
parenta2f0a012ded013f48f5c8efce52e66478c9e313d (diff)
downloadkeystone-3cb2c95b162f4fb0b3b61564c8962ac592a37524.tar.gz
keystone-3cb2c95b162f4fb0b3b61564c8962ac592a37524.tar.xz
keystone-3cb2c95b162f4fb0b3b61564c8962ac592a37524.zip
Merge "Use keystone.wsgi.Request for RequestClass"
Diffstat (limited to 'keystone/common/wsgi.py')
-rw-r--r--keystone/common/wsgi.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/keystone/common/wsgi.py b/keystone/common/wsgi.py
index 381f1ff0..87636dbe 100644
--- a/keystone/common/wsgi.py
+++ b/keystone/common/wsgi.py
@@ -203,7 +203,7 @@ class BaseApplication(object):
class Application(BaseApplication):
- @webob.dec.wsgify
+ @webob.dec.wsgify(RequestClass=Request)
def __call__(self, req):
arg_dict = req.environ['wsgiorg.routing_args'][1]
action = arg_dict.pop('action')