From 8635b60f241c78f277dcf84ca272d30908fed933 Mon Sep 17 00:00:00 2001 From: Brian Haley Date: Thu, 28 Apr 2022 15:15:08 -0400 Subject: [PATCH] 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 --- neutron/opts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/neutron/opts.py b/neutron/opts.py index 6a0afd9ed18..31f8fa88dcf 100644 --- a/neutron/opts.py +++ b/neutron/opts.py @@ -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))