summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Andrews <anotherjesse@gmail.com>2011-05-24 13:51:33 -0700
committerJesse Andrews <anotherjesse@gmail.com>2011-05-24 13:51:33 -0700
commitddb951239b76772761b296662dbbbc3b52e10cbc (patch)
tree7371e96d616089bf904079dcb9502d7e9edde505
parent881bbb143c38ba037188ebd2da8529441546f06b (diff)
user should be what keystone returns
-rw-r--r--keystone/auth_protocols/auth_token.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/keystone/auth_protocols/auth_token.py b/keystone/auth_protocols/auth_token.py
index 4de54a55..d6bc9270 100644
--- a/keystone/auth_protocols/auth_token.py
+++ b/keystone/auth_protocols/auth_token.py
@@ -161,10 +161,8 @@ class AuthProtocol(object):
if claims:
# TODO(Ziad): add additional details we may need,
# like tenant and group info
- self._decorate_request('X_AUTHORIZATION',
- "Proxy %s" % claims['user'])
- self._decorate_request('X_TENANT',
- claims['tenant'])
+ self._decorate_request('X_AUTHORIZATION', claims['user'])
+ self._decorate_request('X_TENANT', claims['tenant'])
if 'group' in claims:
self._decorate_request('X_GROUP', claims['group'])
self.expanded = True