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" into R2.20
  • Loading branch information
Zuul authored and opencontrail-ci-admin committed Apr 19, 2016
2 parents b0358a5 + de80c1e commit f48f2f2
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/config/api-server/vnc_auth_keystone.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,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 f48f2f2

Please sign in to comment.