Merge "Normalize cloud config before osc-lib call"

This commit is contained in:
Jenkins 2016-11-11 18:00:22 +00:00 committed by Gerrit Code Review
commit ba57e4f509
1 changed files with 2 additions and 1 deletions

View File

@ -1050,6 +1050,7 @@ class OpenStackConfig(object):
config[key] = val
config = self.magic_fixes(config)
config = self._normalize_keys(config)
# NOTE(dtroyer): OSC needs a hook into the auth args before the
# plugin is loaded in order to maintain backward-
@ -1092,7 +1093,7 @@ class OpenStackConfig(object):
return cloud_config.CloudConfig(
name=cloud_name,
region=config['region_name'],
config=self._normalize_keys(config),
config=config,
force_ipv4=force_ipv4,
auth_plugin=auth_plugin,
openstack_config=self,