Merge "Fixes 'ovs-agent cannot start on Windows because root_helper opt is not found'" into stable/liberty

This commit is contained in:
Jenkins
2015-10-02 19:56:33 +00:00
committed by Gerrit Code Review
2 changed files with 3 additions and 1 deletions

View File

@@ -15,9 +15,11 @@
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
@@ -28,6 +30,7 @@ else:
LOG = logging.getLogger(__name__)
config.register_root_helper(cfg.CONF)
execute = utils.execute

View File

@@ -44,7 +44,6 @@ from neutron import wsgi
LOG = logging.getLogger(__name__)
config.register_root_helper(cfg.CONF)
class RootwrapDaemonHelper(object):