Merge "CFG: Remove unnused cfg options"

This commit is contained in:
Zuul 2021-04-15 08:09:56 +00:00 committed by Gerrit Code Review
commit 33c25b513b
2 changed files with 0 additions and 23 deletions

View File

@ -131,14 +131,6 @@ cfg.CONF.register_opts(taas_quota_opts, 'QUOTAS')
TaasOpts = [ TaasOpts = [
cfg.StrOpt(
'driver',
default='',
help=_("Name of the TaaS Driver")),
cfg.BoolOpt(
'enabled',
default=False,
help=_("Enable TaaS")),
cfg.IntOpt( cfg.IntOpt(
'vlan_range_start', 'vlan_range_start',
default=3900, default=3900,

View File

@ -14,24 +14,9 @@
# under the License. # under the License.
from neutron_lib import rpc as n_rpc from neutron_lib import rpc as n_rpc
from neutron_taas._i18n import _
from oslo_config import cfg
import oslo_messaging as messaging import oslo_messaging as messaging
TaasOpts = [
cfg.StrOpt(
'driver',
default='',
help=_("Name of the TaaS Driver")),
cfg.BoolOpt(
'enabled',
default=False,
help=_("Enable TaaS")),
]
cfg.CONF.register_opts(TaasOpts, 'taas')
class TaasPluginApiMixin(object): class TaasPluginApiMixin(object):
# Currently there are no Calls the Agent makes towards the Plugin. # Currently there are no Calls the Agent makes towards the Plugin.