Merge "Allow keystone validation bypass for noauth usage"

This commit is contained in:
Jenkins
2015-03-01 14:54:02 +00:00
committed by Gerrit Code Review

View File

@@ -294,6 +294,10 @@ class OpenStackConfig(object):
if type(config[key]) is not bool:
config[key] = get_boolean(config[key])
if 'auth_plugin' in config:
if config['auth_plugin'] in ('', 'None', None):
validate = False
if validate and ksc_auth:
config = self._validate_auth(config)