CFG: Remove unnused cfg options

Config options 'driver' and 'enabled' are not used anymore, perhaps
since this commit was merged: Ife1807c04d8f0f44f067e1905890262ae2f7e426

Change-Id: I1e456354189608e28610a6c5cff3fe98e89a3e9f
This commit is contained in:
elajkat 2020-07-29 13:12:36 +02:00 committed by Lajos Katona
parent c3592c8328
commit 9b66ded049
2 changed files with 0 additions and 23 deletions

View File

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

View File

@ -14,24 +14,9 @@
# under the License.
from neutron_lib import rpc as n_rpc
from neutron_taas._i18n import _
from oslo_config import cfg
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):
# Currently there are no Calls the Agent makes towards the Plugin.