Add missing oslo.service.service namespace to config

We are using some config params from oslo.service.service namespace,
such as graceful_shutdown_timeout, so we must make sure we give our
users the possibility to figure that out by reading the configuration
reference or sample.

Change-Id: I66de11837fc4057db1bfc1f7fade4b9b4760f237
Signed-off-by: Arnaud M <arnaud.morin@gmail.com>
This commit is contained in:
Arnaud M 2025-02-11 23:47:20 +01:00
parent 6df18aa230
commit 8df35dc9fe
2 changed files with 3 additions and 0 deletions

View File

@ -26,6 +26,7 @@ from keystoneauth1 import loading
from oslo_config import cfg
from oslo_log import log
from oslo_middleware import cors
from oslo_service import _options as service_opts
from osprofiler import opts as profiler
from mistral import version
@ -780,6 +781,7 @@ CONF.register_opt(js_impl_opt)
CONF.register_opt(rpc_impl_opt)
CONF.register_opt(oslo_rpc_executor)
CONF.register_opt(expiration_token_duration)
CONF.register_opts(service_opts.service_opts)
CONF.register_opts(
legacy_action_provider_opts,

View File

@ -12,3 +12,4 @@ namespace = keystonemiddleware.auth_token
namespace = oslo.log
namespace = oslo.policy
namespace = oslo.service.sslutils
namespace = oslo.service.service