From 932f1f7c373d6b72a9f83a24bf42fad871b82fcd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E5=AD=A6=E5=B3=B0?= Date: Tue, 18 Oct 2022 11:17:53 +0800 Subject: [PATCH] fix: server ip for create tone job --- services/tone_job_service.py | 1 - 1 file changed, 1 deletion(-) diff --git a/services/tone_job_service.py b/services/tone_job_service.py index cf6c1ef..daa29f3 100644 --- a/services/tone_job_service.py +++ b/services/tone_job_service.py @@ -81,7 +81,6 @@ async def save_func_detail(task_id, data): test_case_id = func_result.get('test_case_id') case = [task_case_result for task_case_result in run_result.get('case_infos') if int(task_case_result['tone_case_id']) == test_case_id] - statistic_json = await parse_result_file(func_result.get('statistic_file')) if len(case) == 1: case[0]['result'] = func_result.get('case_state') case[0]['statistics'] = func_result.get('result_statistics') -- Gitee