Skip to content

Commit

Permalink
Fix for admin authentication from non-default domain in Keystone v3
Browse files Browse the repository at this point in the history
Closes-Bug: #1551606
Change-Id: I831e206b06a7ae96fe43edd15e2b8fc63f93283e
(cherry picked from commit cc4066c)
  • Loading branch information
pupapaik authored and biswajit-mandal committed Mar 9, 2016
1 parent e8c67de commit de80c1e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/config/api-server/vnc_auth_keystone.py
Expand Up @@ -156,6 +156,11 @@ def __init__(self, server_mgr, args):
'max_requests': args.max_requests,
'insecure':args.insecure,
}
try:
if 'v3' in args.auth_url:
self._conf_info['auth_version'] = 'v3.0'
except AttributeError:
pass
if _kscertbundle:
self._conf_info['cafile'] = _kscertbundle
self._server_mgr = server_mgr
Expand Down

0 comments on commit de80c1e

Please sign in to comment.