From 5bc655f8c8ab80ae233e5887362e3ecede87f375 Mon Sep 17 00:00:00 2001 From: giles Date: Tue, 3 Feb 2026 00:44:53 +0000 Subject: [PATCH] Include rendering status in runs list --- app/services/run_service.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/services/run_service.py b/app/services/run_service.py index 4e2feb6..ae538c5 100644 --- a/app/services/run_service.py +++ b/app/services/run_service.py @@ -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