Change 'DHCP' option group name to 'dhcp'

Only 'DEFAULT' is an allowable all-caps option group name,
else a warning is generated:

WARNING:oslo_config.generator:normalizing group name 'DHCP' to 'dhcp'

Can see this in the 'tox -e docs' job.

Trivialfix

Change-Id: Ic2dbb1c91220f84cdcb73c9e3559728d54c21a25
This commit is contained in:
Brian Haley 2022-04-28 15:15:08 -04:00
parent 6db61d0704
commit 8635b60f24
1 changed files with 1 additions and 1 deletions

View File

@ -342,7 +342,7 @@ def list_ovs_opts():
neutron.conf.agent.securitygroups_rpc.security_group_opts),
('network_log',
neutron.conf.services.logging.log_driver_opts),
('DHCP',
('dhcp',
itertools.chain(
neutron.conf.plugins.ml2.drivers.ovs_conf.dhcp_opts,
neutron.conf.agent.common.DHCP_PROTOCOL_OPTS))