Remove lb_network_name from config (it was bogus)

This option was NEVER read, so there is no point in continuing to allow
it to be configured (it is pointless).

Change-Id: I147abdd8d3d95164168ec606f5b92401cb24d1fe
Closes-Bug: #1691286
This commit is contained in:
Adam Harwell 2017-05-16 14:49:29 -07:00
parent eb644135af
commit da81984492
3 changed files with 0 additions and 4 deletions

View File

@ -106,8 +106,6 @@
# password =
[networking]
# Network to communicate with amphora
# lb_network_name =
# The maximum attempts to retry an action with the networking service.
# max_retries = 15
# Seconds to wait before retrying an action with the networking service.

View File

@ -83,7 +83,6 @@ amphora_agent_opts = [
]
networking_opts = [
cfg.StrOpt('lb_network_name', help=_('Name of amphora internal network')),
cfg.IntOpt('max_retries', default=15,
help=_('The maximum attempts to retry an action with the '
'networking service.')),

View File

@ -93,7 +93,6 @@ class TestNovaClient(base.TestCase):
conf = self.useFixture(oslo_fixture.Config(cfg.CONF))
self.conf = conf
self.net_name = "lb-mgmt-net"
conf.config(group="networking", lb_network_name=self.net_name)
conf.config(group="controller_worker",
amp_boot_network_list=['1', '2'])
self.conf = conf