From 86af6ab8a20913fff972497b07e8ae592113b273 Mon Sep 17 00:00:00 2001 From: Guang Yee Date: Fri, 13 Sep 2019 15:45:08 -0700 Subject: [PATCH] correct watcher project for oslo_config It should've been "watcher" instead of "python-watcher" as the config files are expected to be in /etc/watcher/. Though this is unlikely to cause problems as this patch corrected the default config dir. https://review.opendev.org/#/c/658348/ Nevertheless, we should be using the correct name. Change-Id: If6b58133eecf2fcc37e11d8c45eaa58f238ea2a8 --- watcher/common/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/watcher/common/config.py b/watcher/common/config.py index 967821843..ce70ae40b 100644 --- a/watcher/common/config.py +++ b/watcher/common/config.py @@ -28,7 +28,7 @@ def parse_args(argv, default_config_files=None, default_config_dirs=None): cfg.find_config_dirs(project='watcher')) rpc.set_defaults(control_exchange='watcher') cfg.CONF(argv[1:], - project='python-watcher', + project='watcher', version=version.version_info.release_string(), default_config_dirs=default_config_dirs, default_config_files=default_config_files)