Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions services/hackbot-api/app/routers/runs.py
Original file line number Diff line number Diff line change
Expand Up @@ -243,8 +243,8 @@ async def finalize_run(db: AsyncSession, run: Run) -> None:
try:
exec_status = await jobs.get_execution_status(run.execution_name)
except Exception:
log.exception("Failed to fetch execution status for run %s", run.run_id)
return
log.warning("Failed to fetch execution status for run %s", run.run_id)
raise

if exec_status in (ExecutionStatus.pending, ExecutionStatus.running):
if (
Expand Down