Support v1password with no explicit auth_version
Change-Id: I787b0988b7518850f1e1f93ca269f39f8cdec15c
This commit is contained in:
@@ -96,8 +96,9 @@ def process_options(options):
|
||||
elif options.get('auth_version') == '2':
|
||||
options['auth_version'] = '2.0'
|
||||
|
||||
if options.get('auth_version') not in ('2.0', '3') and not all(
|
||||
options.get(key) for key in ('auth', 'user', 'key')):
|
||||
if options.get('auth_version') not in ('2.0', '3') and \
|
||||
options.get('os_auth_type') != 'v1password' and \
|
||||
not all(options.get(key) for key in ('auth', 'user', 'key')):
|
||||
# Use keystone auth if any of the new-style args are present
|
||||
if any(options.get(k) for k in (
|
||||
'os_user_domain_id',
|
||||
|
Reference in New Issue
Block a user