Merge pull request #39079 from gtmanfred/2016.3

use_keystoneauth should default to False if not specified
This commit is contained in:
Mike Place 2017-01-31 13:12:46 -07:00 committed by GitHub
commit 8a4d210959

View file

@ -298,7 +298,7 @@ def get_conn():
kwargs['project_id'] = vm_['tenant']
kwargs['auth_url'] = vm_['identity_url']
kwargs['region_name'] = vm_['compute_region']
kwargs['use_keystoneauth'] = vm_['use_keystoneauth']
kwargs['use_keystoneauth'] = vm_.get('use_keystoneauth', False)
if 'password' in vm_:
kwargs['password'] = vm_['password']