summaryrefslogtreecommitdiffstats
path: root/keystone/middleware
diff options
context:
space:
mode:
authorAlvaro Lopez Garcia <aloga@ifca.unican.es>2012-10-29 15:33:59 +0100
committerAlvaro Lopez Garcia <aloga@ifca.unican.es>2012-10-29 15:45:00 +0100
commit9602284c5d5aa25a70aedf91b80828726bbd48c2 (patch)
tree4b86b5cbbc528aba79acf18925d7184d36797499 /keystone/middleware
parentfcab54b67a2221b66bb48da522a3d6fa9f6ec39e (diff)
downloadkeystone-9602284c5d5aa25a70aedf91b80828726bbd48c2.tar.gz
keystone-9602284c5d5aa25a70aedf91b80828726bbd48c2.tar.xz
keystone-9602284c5d5aa25a70aedf91b80828726bbd48c2.zip
Move 'opentack.context' and 'openstack.params' definitions to keystone.common.wsgi
Change-Id: Idc4f6765cba20e7baadb61e355076695f36d66ea
Diffstat (limited to 'keystone/middleware')
-rw-r--r--keystone/middleware/core.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/keystone/middleware/core.py b/keystone/middleware/core.py
index f6b13f71..6f8abff2 100644
--- a/keystone/middleware/core.py
+++ b/keystone/middleware/core.py
@@ -29,11 +29,11 @@ AUTH_TOKEN_HEADER = 'X-Auth-Token'
# Environment variable used to pass the request context
-CONTEXT_ENV = 'openstack.context'
+CONTEXT_ENV = wsgi.CONTEXT_ENV
# Environment variable used to pass the request params
-PARAMS_ENV = 'openstack.params'
+PARAMS_ENV = wsgi.PARAMS_ENV
class TokenAuthMiddleware(wsgi.Middleware):