Skip to content

Commit

Permalink
Fix anyrun_analyzer response value parse for submit file
Browse files Browse the repository at this point in the history
  • Loading branch information
winl0gon committed Dec 13, 2024
1 parent 19508bc commit c1de513
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion analyzers/AnyRun/anyrun_analyzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def run(self):
if status_code == 200:
task_id = response.json()["data"]["taskid"]
elif status_code == 201:
task_id = response.json()["taskid"]
task_id = response.json()["data"]["taskid"]
elif status_code == 429:
# it not support parallel runs, so we wait and resubmit later
time.sleep(60)
Expand Down

0 comments on commit c1de513

Please sign in to comment.