Skip to content

Commit

Permalink
Merge "Keystone middleware doesn't like if token is unicode. It must …
Browse files Browse the repository at this point in the history
…be converted to string before validation." into R3.0
  • Loading branch information
Zuul authored and opencontrail-ci-admin committed Aug 17, 2016
2 parents 365ebc1 + 76881c3 commit 69a9d3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config/api-server/vnc_cfg_api_server.py
Expand Up @@ -1734,7 +1734,7 @@ def obj_perms_http_get(self):
raise cfgm_common.exceptions.HttpError(
400, 'Object uuid needed for validation')
obj_uuid = get_request().query.uuid
user_token = get_request().query.token
user_token = get_request().query.token.encode("ascii")

result = {'permissions' : ''}

Expand Down

0 comments on commit 69a9d3c

Please sign in to comment.