Skip to content

Commit

Permalink
Merge pull request #1299 from winl0gon/master
Browse files Browse the repository at this point in the history
Fix anyrun_analyzer.py for submit file
  • Loading branch information
nusantara-self authored Dec 13, 2024
2 parents 5b8ee78 + c1de513 commit 7779c75
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 7779c75

Please sign in to comment.