diff options
author | QiLiang <liangqi1@huawei.com> | 2016-01-18 07:07:55 +0000 |
---|---|---|
committer | QiLiang <liangqi1@huawei.com> | 2016-01-18 07:07:55 +0000 |
commit | 625a6dac381a35a0c12cab0cfd21146844778aaa (patch) | |
tree | 799fda63e0651449e7b6a27519cbb42fa78fd0dd | |
parent | 58f3b57faedfda7033383b5807fb6553acaa6a2f (diff) |
HttpDispatcher case_name value update
See details on https://etherpad.opnfv.org/p/yardstick_release_b_troubleshooting
section Questions 6.1
Change-Id: I72268c827a2321859c405f45b7e1e475c0ffb4a0
Signed-off-by: QiLiang <liangqi1@huawei.com>
-rw-r--r-- | yardstick/dispatcher/http.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yardstick/dispatcher/http.py b/yardstick/dispatcher/http.py index de29588e2..90238adf3 100644 --- a/yardstick/dispatcher/http.py +++ b/yardstick/dispatcher/http.py @@ -69,7 +69,7 @@ class HttpDispatcher(DispatchBase): case_name = "" for v in self.raw_result: if isinstance(v, dict) and "scenario_cfg" in v: - case_name = v["scenario_cfg"]["type"] + case_name = v["scenario_cfg"]["tc"] break if case_name == "": LOG.error('Test result : %s' % json.dumps(self.result)) |