diff options
author | Yang Yu <Gabriel.yuyang@huawei.com> | 2017-12-20 17:03:39 +0800 |
---|---|---|
committer | Yang Yu <Gabriel.yuyang@huawei.com> | 2017-12-21 11:32:50 +0800 |
commit | d44ed0fc0cbcb73f68494aee56615bdbe5dc419b (patch) | |
tree | f64f120e4b700da435e422effbb7767d17c1cf6a /testsuites/posca/testcase_dashboard/posca_stress_ping.py | |
parent | 6a23b35f2b0286132c3bc9f4d4e19a42c7e2f45c (diff) |
bug-fix: fix neutron quota setting
JIRA: BOTTLENECK-215
also fix the bug for type error: converted string
Change-Id: Ic56b5ab5c49d8fdbcf49ba4571c2286d5f7bc422
Signed-off-by: Yang Yu <Gabriel.yuyang@huawei.com>
Diffstat (limited to 'testsuites/posca/testcase_dashboard/posca_stress_ping.py')
-rw-r--r-- | testsuites/posca/testcase_dashboard/posca_stress_ping.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuites/posca/testcase_dashboard/posca_stress_ping.py b/testsuites/posca/testcase_dashboard/posca_stress_ping.py index 7a5a8fb8..64ce3835 100644 --- a/testsuites/posca/testcase_dashboard/posca_stress_ping.py +++ b/testsuites/posca/testcase_dashboard/posca_stress_ping.py @@ -32,7 +32,7 @@ def dashboard_send_data(runner_config, test_data): doc_type=test_data["testcase"], body=test_data["data_body"]) if res['created'] == "False": - LOG.error("date send to kibana have errors ", test_data["data_body"]) + LOG.error("date send to kibana have errors %s", test_data["data_body"]) def posca_stress_ping(runner_config): |