[eventlet-removal] Remove the usage of eventlet in the DHCP agent

The DHCP agent no longer is calling eventlet not monkey_patch().

Closes-Bug: #2087944
Change-Id: I94ebcbbaec6492b781725807571e4927e58906c9
This commit is contained in:
Rodolfo Alonso Hernandez
2025-02-24 07:30:10 +00:00
committed by Rodolfo Alonso
parent 32ace977cf
commit 7c32d43c4b
3 changed files with 2 additions and 2 deletions

View File

@@ -21,7 +21,7 @@ from oslo_config import cfg
from oslo_utils import uuidutils
from neutron.agent.linux import dhcp as linux_dhcp
from neutron.cmd.eventlet.agents import dhcp as dhcp_agent
from neutron.cmd.agents import dhcp as dhcp_agent
from neutron.common import config

View File

@@ -34,7 +34,7 @@ wsgi_scripts =
neutron-api = neutron.cmd.server:main_api_uwsgi
console_scripts =
neutron-db-manage = neutron.db.migration.cli:main
neutron-dhcp-agent = neutron.cmd.eventlet.agents.dhcp:main
neutron-dhcp-agent = neutron.cmd.agents.dhcp:main
neutron-keepalived-state-change = neutron.cmd.keepalived_state_change:main
neutron-ipset-cleanup = neutron.cmd.ipset_cleanup:main
neutron-l3-agent = neutron.cmd.eventlet.agents.l3:main