summaryrefslogtreecommitdiffstats
path: root/keystone/common/wsgi.py
diff options
context:
space:
mode:
authorAlvaro Lopez Garcia <aloga@ifca.unican.es>2013-06-14 13:47:10 +0200
committerGerrit Code Review <review@openstack.org>2013-06-20 10:31:22 +0000
commita48488764a38961a66ad07c4bf629f220f80334c (patch)
treec1f528d06230f6137f5fcfe0b24d8ab27f8b7b89 /keystone/common/wsgi.py
parent7ccfac73fb204e65f6cdcb8aa2ed6a053846967c (diff)
downloadkeystone-a48488764a38961a66ad07c4bf629f220f80334c.tar.gz
keystone-a48488764a38961a66ad07c4bf629f220f80334c.tar.xz
keystone-a48488764a38961a66ad07c4bf629f220f80334c.zip
wsgi.Middleware factory should use **kwargs
Fixes bug 1190978 Change-Id: Ifb0673b7aab5292c13bf5c86c5cc2de8096f7e3e
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 d5368b2a..8f76b24f 100644
--- a/keystone/common/wsgi.py
+++ b/keystone/common/wsgi.py
@@ -288,7 +288,7 @@ class Middleware(Application):
def _factory(app):
conf = global_config.copy()
conf.update(local_config)
- return cls(app)
+ return cls(app, **local_config)
return _factory
def __init__(self, application):