Enable mutable config in monasca_transform

New releases of oslo.config support a 'mutable' parameter to Opts.
oslo.service provides an option here Icec3e664f3fe72614e373b2938e8dee53cf8bc5e
allows services to tell oslo.service they want mutate_config_files to be
called by passing a parameter.

This commit is to use the same. This allows monasca_transform to benefit from
I1e7a69de169cc85f4c09954b2f46ce2da7106d90, where the 'debug' option
(owned by oslo.log) is made mutable. we should be able to turn debug
logging on and off by changing the config.

tc goal:
https://governance.openstack.org/tc/goals/rocky/enable-mutable-configuration.html

Change-Id: I86571df78014a810ffa881ceceeddfc5193c9ca5
This commit is contained in:
sajuptpm 2018-07-25 16:41:46 +05:30
parent 077ea431ec
commit 410115088e
2 changed files with 3 additions and 2 deletions

View File

@ -288,7 +288,7 @@ def main_service():
"""Method to use with Openstack service."""
ConfigInitializer.basic_config()
LogUtils.init_logger(__name__)
launcher = os_service.ServiceLauncher(cfg.CONF)
launcher = os_service.ServiceLauncher(cfg.CONF, restart_method='mutate')
launcher.launch_service(Transform())
launcher.wait()

View File

@ -53,7 +53,8 @@ class TransformServiceTestBase(unittest.TestCase):
launcher = oslo_service.service.launch(
self.conf,
transform_service.Transform(),
workers=1)
workers=1,
restart_method='mutate')
status = launcher.wait()
except SystemExit as exc:
traceback.print_exc()