Drop unused --use-debugger option

Change-Id: I6c1cfc0f0c3c356c1fef4b446741dbf07e63de56
Signed-off-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
This commit is contained in:
Takashi Kajinami
2025-08-01 18:28:27 +09:00
parent 6ed89e8f51
commit eccc35e0af

View File

@@ -49,15 +49,6 @@ wf_trace_log_name_opt = cfg.StrOpt(
help=_('Logger name for pretty workflow trace output.')
)
use_debugger_opt = cfg.BoolOpt(
'use-debugger',
default=False,
help=_('Enables debugger. Note that using this option changes how the '
'eventlet library is used to support async IO. This could result '
'in failures that do not occur under normal operation. '
'Use at your own risk.')
)
auth_type_opt = cfg.StrOpt(
'auth_type',
default='keystone',
@@ -828,7 +819,6 @@ CONF.register_opts(healthcheck_opts, group=HEALTHCHECK_GROUP)
loading.register_session_conf_options(CONF, KEYSTONE_GROUP)
CLI_OPTS = [
use_debugger_opt,
launch_opt
]