From 5112f294c81a195c94d84c8f83da8b95c8de3cb0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vincent=20Fran=C3=A7oise?= Date: Wed, 21 Sep 2016 15:43:44 +0200 Subject: [PATCH] Fixed GMR configuration issue GMR was ignoring the config because the conf wasn't passed when starting any of the Watcher services. This changeset fixes this issue. Change-Id: If386c5f0459c4278a2a56c8c3185fcdafce673a0 --- watcher/common/service.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/watcher/common/service.py b/watcher/common/service.py index c29290cc2..b5fee73fa 100644 --- a/watcher/common/service.py +++ b/watcher/common/service.py @@ -272,4 +272,4 @@ def prepare_service(argv=(), conf=cfg.CONF): conf.log_opt_values(LOG, logging.DEBUG) gmr.TextGuruMeditation.register_section(_('Plugins'), opts.show_plugins) - gmr.TextGuruMeditation.setup_autorun(version) + gmr.TextGuruMeditation.setup_autorun(version, conf=conf)