From 27c8391458e37c244dfa983b020a55dca90ea754 Mon Sep 17 00:00:00 2001 From: Darragh O'Reilly Date: Tue, 31 Mar 2020 11:17:47 +0000 Subject: [PATCH] Fix neutron debug probe to use integration_bridge The debug probe stopped working after https://review.opendev.org/#/c/698783/ Change-Id: I70deb83a1b52d2a34c92f32fb163c931aa0ff76a --- neutron/debug/shell.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/neutron/debug/shell.py b/neutron/debug/shell.py index f34412270ae..37b5a7e65ae 100644 --- a/neutron/debug/shell.py +++ b/neutron/debug/shell.py @@ -21,6 +21,7 @@ from oslo_utils import importutils from neutron._i18n import _ from neutron.agent.common import utils from neutron.conf.agent import common as config +from neutron.conf.plugins.ml2.drivers import ovs_conf from neutron.debug import debug_agent from neutronclient.common import exceptions as exc from neutronclient import shell @@ -72,6 +73,7 @@ class NeutronDebugShell(shell.NeutronShell): client = self.client_manager.neutron config.register_interface_opts() config.register_interface_driver_opts_helper(cfg.CONF) + ovs_conf.register_ovs_opts(cfg.CONF) cfg.CONF(['--config-file', self.options.config_file]) config.setup_logging() driver = utils.load_interface_driver(cfg.CONF)