Change Ie1224f8a1c17268cd7d1c474ed82fdfb8852eaa8 removed
config.register_root_helper() from ovs_neutron_agent:main, thus the agent
cannot start on Windows since root_helper config option is never
registered.
The fix consists in adding config.register_root_helper in the Windows side
utils.
Closes-Bug: #
1497930
Change-Id: I6adc3b869c9564cac3ab99174b8fe47584213e59
import os
+from oslo_config import cfg
from oslo_log import log as logging
from oslo_utils import importutils
+from neutron.agent.common import config
from neutron.i18n import _LE
LOG = logging.getLogger(__name__)
+config.register_root_helper(cfg.CONF)
execute = utils.execute
LOG = logging.getLogger(__name__)
-config.register_root_helper(cfg.CONF)
class RootwrapDaemonHelper(object):