Skip to content

Commit

Permalink
Merge pull request #1313 from backb1/fix-anyrun
Browse files Browse the repository at this point in the history
Fix AnyRun Analyzer for data type 'file'
  • Loading branch information
nusantara-self authored Feb 6, 2025
2 parents 6a3ffcf + 76ead61 commit 4c3531b
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 @@ -85,7 +85,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 4c3531b

Please sign in to comment.