Bugfix: create yardstick.conf file failed due to wrong config file path 81/25481/1
authorchenjiankun <chenjiankun1@huawei.com>
Mon, 5 Dec 2016 10:48:35 +0000 (10:48 +0000)
committerchenjiankun <chenjiankun1@huawei.com>
Mon, 5 Dec 2016 10:48:35 +0000 (10:48 +0000)
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 <chenjiankun1@huawei.com>
yardstick/common/constants.py

index d541ead..443b3e8 100644 (file)
@@ -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'