From 9595f47c912430ab7cb1ca7071f84b73ad21d46a Mon Sep 17 00:00:00 2001 From: QiLiang Date: Mon, 18 Jan 2016 07:07:55 +0000 Subject: 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 (cherry picked from commit 625a6dac381a35a0c12cab0cfd21146844778aaa) --- yardstick/dispatcher/http.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)) -- cgit 1.2.3-korg