Merge "metaplugin: use correct parameter to call neutron client"

This commit is contained in:
Jenkins 2013-12-05 11:00:40 +00:00 committed by Gerrit Code Review
commit 7841c40140
2 changed files with 2 additions and 2 deletions

View File

@ -381,7 +381,7 @@ class MetaInterfaceDriver(LinuxInterfaceDriver):
tenant_name=self.conf.admin_tenant_name,
auth_url=self.conf.auth_url,
auth_strategy=self.conf.auth_strategy,
auth_region=self.conf.auth_region
region_name=self.conf.auth_region
)
self.flavor_driver_map = {}
for flavor, driver_name in [

View File

@ -42,7 +42,7 @@ class ProxyPluginV2(db_base_plugin_v2.NeutronDbPluginV2,
tenant_name=cfg.CONF.PROXY.admin_tenant_name,
auth_url=cfg.CONF.PROXY.auth_url,
auth_strategy=cfg.CONF.PROXY.auth_strategy,
auth_region=cfg.CONF.PROXY.auth_region
region_name=cfg.CONF.PROXY.auth_region
)
def _get_client(self):