from oslo_db import options as db_options
from oslo_log import log as logging
import oslo_messaging
-from oslo_service import _options
from oslo_service import wsgi
from neutron.api.v2 import attributes
# Register the configuration options
cfg.CONF.register_opts(core_opts)
cfg.CONF.register_cli_opts(core_cli_opts)
-# TODO(eezhova): Replace it with wsgi.register_opts(CONF) when oslo.service
-# 0.10.0 releases.
-cfg.CONF.register_opts(_options.wsgi_opts)
+wsgi.register_opts(cfg.CONF)
# Ensure that the control exchange is set correctly
oslo_messaging.set_transport_defaults(control_exchange='neutron')
import oslo_i18n
from oslo_log import log as logging
from oslo_serialization import jsonutils
-from oslo_service import _options
from oslo_service import service as common_service
from oslo_service import sslutils
from oslo_service import systemd
CONF = cfg.CONF
CONF.register_opts(socket_opts)
-# TODO(eezhova): Replace it with wsgi.register_opts(CONF) when oslo.service
-# 0.10.0 releases.
-CONF.register_opts(_options.wsgi_opts)
+wsgi.register_opts(CONF)
LOG = logging.getLogger(__name__)
oslo.policy>=0.5.0 # Apache-2.0
oslo.rootwrap>=2.0.0 # Apache-2.0
oslo.serialization>=1.4.0 # Apache-2.0
-oslo.service>=0.9.0 # Apache-2.0
+oslo.service>=0.10.0 # Apache-2.0
oslo.utils>=2.0.0 # Apache-2.0
oslo.versionedobjects>=0.9.0