From dbff54b2fbf67059ce49c185fd692a178d240279 Mon Sep 17 00:00:00 2001 From: chenjiankun Date: Mon, 5 Dec 2016 10:48:35 +0000 Subject: Bugfix: create yardstick.conf file failed due to wrong config file path JIRA: YARDSTICK-446 now the yardstick dispatcher config path is set to /etc/yardstick/config.yaml which is wrong. I will change it to /etc/yardstick/yardstick.conf Change-Id: I4cd5436bf64f3b764f6bb102eff3443e765fffe9 Signed-off-by: chenjiankun --- yardstick/common/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'yardstick') diff --git a/yardstick/common/constants.py b/yardstick/common/constants.py index d541ead15..443b3e810 100644 --- a/yardstick/common/constants.py +++ b/yardstick/common/constants.py @@ -25,7 +25,7 @@ YARDSTICK_REPOS_DIR = '/home/opnfv/repos/yardstick' YARDSTICK_CONFIG_DIR = '/etc/yardstick/' -YARDSTICK_CONFIG_FILE = os.path.join(YARDSTICK_CONFIG_DIR, 'config.yaml') +YARDSTICK_CONFIG_FILE = os.path.join(YARDSTICK_CONFIG_DIR, 'yardstick.conf') RELENG_DIR = '/home/opnfv/repos/releng' -- cgit 1.2.3-korg