Skip to content

Commit

Permalink
Merge "Fix for admin authentication from non-default domain in Keysto…
Browse files Browse the repository at this point in the history
…ne v3. Tested and verified against latest Contrail 3.0 build." into R3.0
  • Loading branch information
Zuul authored and opencontrail-ci-admin committed Apr 25, 2016
2 parents b1e91c8 + d3206c7 commit 8970ee5
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 @@ -148,6 +148,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 8970ee5

Please sign in to comment.