Include rendering status in runs list

This commit is contained in:
giles
2026-02-03 00:44:53 +00:00
parent 8f4d6d12bc
commit 5bc655f8c8

View File

@@ -331,9 +331,9 @@ class RunService:
if any(r.get("run_id") == run_id for r in completed_runs):
continue
# Get live status - include pending, running, and failed runs
# Get live status - include pending, running, rendering, and failed runs
run = await self.get_run(run_id)
if run and run.get("status") in ("pending", "running", "failed"):
if run and run.get("status") in ("pending", "running", "rendering", "failed"):
pending.append(run)
# Combine and sort