Skip to content
Merged
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
1 change: 0 additions & 1 deletion automation/canfar_polling.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,6 @@ async def _fetch_prefect_completed_flow_runs(limit: int = 200):
async def _fail_flow_run(flow_run_id, reason: str) -> None:
"""Mark the specified flow-run as FAILED with the given reason/message."""
async with get_client() as client:
await client.cancel_flow_run(flow_run_id=flow_run_id)
await client.set_flow_run_state(
flow_run_id=flow_run_id,
state=Failed(message=reason),
Expand Down
Loading