summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Andrews <anotherjesse@gmail.com>2011-05-25 04:51:33 +0800
committerKevin L. Mitchell <kevin.mitchell@rackspace.com>2011-05-26 05:55:04 +0800
commit569095e8f6771291c76d64410e2094f2d3d278bc (patch)
treec993e112f14f1040042d559bd9e879e428a98cb8
parent3fadaa6b50e07e2a2ee5e900d27ce5786aabbc4b (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