Skip to content

Commit c1de513

Browse files
author
Jeonghyun Joo
committed
Fix anyrun_analyzer response value parse for submit file
1 parent 19508bc commit c1de513

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

analyzers/AnyRun/anyrun_analyzer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ def run(self):
119119
if status_code == 200:
120120
task_id = response.json()["data"]["taskid"]
121121
elif status_code == 201:
122-
task_id = response.json()["taskid"]
122+
task_id = response.json()["data"]["taskid"]
123123
elif status_code == 429:
124124
# it not support parallel runs, so we wait and resubmit later
125125
time.sleep(60)

0 commit comments

Comments
 (0)