Merge "Fix default value of 'nova_catalog_admin_info'"
This commit is contained in:
commit
7b6255af24
@ -18,7 +18,7 @@ from oslo_config import cfg
|
||||
|
||||
nova_opts = [
|
||||
cfg.StrOpt('nova_catalog_admin_info',
|
||||
default='compute:Compute Service:publicURL',
|
||||
default='compute:nova:publicURL',
|
||||
help='Match this value when searching for nova in the '
|
||||
'service catalog. Format is: separated values of '
|
||||
'the form: '
|
||||
|
@ -58,7 +58,7 @@ class NovaClientTestCase(test.TestCase):
|
||||
p_api_version(nova.NOVA_API_VERSION),
|
||||
session=p_session.return_value, region_name=None,
|
||||
insecure=False, endpoint_type='publicURL',
|
||||
service_type='compute', service_name='Compute Service',
|
||||
service_type='compute', service_name='nova',
|
||||
cacert=None, timeout=None, global_request_id=self.ctx.global_id,
|
||||
extensions=nova.nova_extensions)
|
||||
|
||||
@ -78,7 +78,7 @@ class NovaClientTestCase(test.TestCase):
|
||||
p_api_version(nova.NOVA_API_VERSION),
|
||||
session=p_session.return_value, region_name=None,
|
||||
insecure=False, endpoint_type='publicURL',
|
||||
service_type='compute', service_name='Compute Service',
|
||||
service_type='compute', service_name='nova',
|
||||
cacert=None, timeout=None, global_request_id=self.ctx.global_id,
|
||||
extensions=nova.nova_extensions)
|
||||
|
||||
@ -100,7 +100,7 @@ class NovaClientTestCase(test.TestCase):
|
||||
p_api_version(nova.NOVA_API_VERSION),
|
||||
session=p_session.return_value, region_name=None,
|
||||
insecure=False, endpoint_type='publicURL',
|
||||
service_type='compute', service_name='Compute Service',
|
||||
service_type='compute', service_name='nova',
|
||||
cacert=None, timeout=None, global_request_id=self.ctx.global_id,
|
||||
extensions=nova.nova_extensions)
|
||||
|
||||
@ -121,7 +121,7 @@ class NovaClientTestCase(test.TestCase):
|
||||
p_api_version(nova.NOVA_API_VERSION),
|
||||
session=p_session.return_value, region_name='farfaraway',
|
||||
insecure=False, endpoint_type='publicURL',
|
||||
service_type='compute', service_name='Compute Service',
|
||||
service_type='compute', service_name='nova',
|
||||
cacert=None, timeout=None, global_request_id=self.ctx.global_id,
|
||||
extensions=nova.nova_extensions)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user