aboutsummaryrefslogtreecommitdiffstats
path: root/yardstick/common/constants.py
diff options
context:
space:
mode:
authorchenjiankun <chenjiankun1@huawei.com>2016-12-05 10:48:35 +0000
committerchenjiankun <chenjiankun1@huawei.com>2016-12-05 10:48:35 +0000
commitdbff54b2fbf67059ce49c185fd692a178d240279 (patch)
treebabd022afa31dd7a579dec5865ad4cf205102cce /yardstick/common/constants.py
parentcefc4e95e9b410c12faea47994d5a2162fa90870 (diff)
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 <chenjiankun1@huawei.com>
Diffstat (limited to 'yardstick/common/constants.py')
-rw-r--r--yardstick/common/constants.py2
1 files changed, 1 insertions, 1 deletions
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'