We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0e5e4e commit 53a43ffCopy full SHA for 53a43ff
reactions_generator/cli.py
@@ -574,7 +574,7 @@ def continuous_build_submission(
574
os.makedirs(output_directory, exist_ok=True)
575
576
while True:
577
- response = requests.get(f"{url}/api/overlay/runs")
+ response = requests.get(f"{url}/reactions/runs.json")
578
ids = [str(run["id"]) for run in response.json() if not run["isHidden"]]
579
580
filtered = [id for id in ids if stable_hash(id) % total_workers == worker_id]
0 commit comments