MHD Motaz Alratta
07/08/2026, 11:52 AMKirill Egorov
07/09/2026, 8:12 AMjames.odev
07/10/2026, 6:41 AMLate state usually means the run wasn’t started before its scheduled time, so retry settings won’t apply because the flow hasn’t actually failed yet. Since this is an Azure push work pool, I’d check the work-pool concurrency limits, Azure ACI quotas/capacity, and the Azure Activity Log for authentication or container-creation errors. Did anything recently change with the service principal, managed identity, work-pool template, or Azure subscription limits? If you can share one affected run’s infrastructure events, we can narrow it down.m.aaron
07/16/2026, 4:18 AMPierre L
07/20/2026, 1:12 PMTimeout of 7200.0 seconds configured for this task, but the task is running in a worker thread. Timeouts in worker threads cannot interrupt blocking operations like `time.sleep()`, network requests, or file I/O. The timeout will only take effect after the blocking operation completes. Consider using an async task with `await` statements for reliable timeout behavior.
Why Prefect show this flow as Crashed while nothing actually crash ?james.odev
07/21/2026, 3:45 AMKirill Egorov
07/22/2026, 9:31 AMRama Chandar
07/22/2026, 9:32 AMHassan Hashmi
07/22/2026, 9:33 AMManuel Rizzo
07/22/2026, 9:33 AMHassan Hashmi
07/22/2026, 10:34 AMDennis Hinnenkamp
07/22/2026, 1:00 PMDaniel
07/23/2026, 6:54 AMSanjeev
07/25/2026, 10:08 PMIsaac Dayan
07/25/2026, 10:20 PMIsaac Dayan
07/25/2026, 10:25 PMOn July 25th at 21:00 UTC, Prefect Cloud will undergo routine scheduled maintenance for our database instances. During this time, the Prefect Cloud APIs will be inaccessible for a brief period, which is typically less than ten minutes, but may last for up to an hour. While work may run late during this maintenance window, no work or data will be lost.Isaac Dayan
07/25/2026, 10:26 PMIsaac Dayan
07/25/2026, 10:36 PMDaniel Gundi
07/26/2026, 11:34 PMMitch Nielsen
07/27/2026, 8:04 PMChu
07/28/2026, 4:02 PMJanet Carson
07/28/2026, 5:21 PMFélix Pelletier
07/29/2026, 5:37 PM{
"type": "event",
"match": {
"prefect.resource.id": "prefect.flow-run.*"
},
"match_related": {
"prefect.resource.id": [
"prefect.flow.5dec07f4-f468-4cdf-99a3-5016aa05c383",
"prefect.flow.acdba04f-fc39-4e67-990b-b9ff25947e24",
"prefect.flow.baebc35a-bcaf-47ab-9819-a80f873d88b5",
"prefect.flow.400db30b-8136-48b0-93bf-f391bded4377",
"prefect.flow.d0b6d613-82d4-42a4-b2c0-113b186d817b",
"prefect.flow.ee31395e-3769-4db5-a72c-6fe6a0470e1a",
"prefect.flow.50bc3efe-2c90-4d06-b82b-08db0faf1a8b",
"prefect.flow.b992f437-56c4-4644-90a8-4ef6305993c4",
"prefect.flow.293b63ca-651d-4e8a-b518-9c63d124bf5a"
],
"prefect.resource.role": "flow"
},
"after": [
"prefect.flow-run.heartbeat"
],
"expect": [
"prefect.flow-run.*"
],
"for_each": [
"prefect.resource.id"
],
"posture": "Proactive",
"threshold": 1,
"within": 600
}
For some reason, a couple minutes after the flow run completes successfully, I can see the flow still triggers, which I would have not expected.
I can see a prefect.flow-run.Completed event for one flow at 124950 EST and the automation still triggered at 125807 EST for that particular flow.
What am I doing wrong? I feel like this is a Prefect Cloud bug 🤔Tri
07/29/2026, 7:28 PM@flow(log_prints=True)
async def load_wso_industry_codes(as_of_date: date | None = None) -> None:
as_of_date = date.today() - timedelta(days=1) if as_of_date is None else as_of_date
issuer_ids = get_issuer_ids(as_of_date)
# print(f'done getting issuer id from db. Count: {len(issuer_ids)}')
sem = asyncio.Semaphore(20) # avoid blasting WSO server, 20 is sufficiently fast
async with httpx.AsyncClient(timeout=30) as client:
token = await get_wso_token(client)
client.headers['Authorization'] = f"Bearer {token}"
issuers = await work(sem, client, issuer_ids, wait_for=[issuer_ids])
print('saving industry codes')
await save_industry_codes(as_of_date, issuers, wait_for=[issuers])
why my prefect dependency graph is showing a dependency arrow betwen save_industry_codes and get_issuer_ids?
also I have to explicitly add wait_for for it to show the dependency arrows. It should automatically discover the dependency since I'm passing the result of a task to another one already...SuYong Jin
07/30/2026, 7:53 AMMichel Lalancette
07/31/2026, 8:35 PMSuYong Jin
08/03/2026, 10:48 AMDavid Elles
08/04/2026, 1:10 AMMichel Lalancette
08/05/2026, 5:26 PMjdoran
08/06/2026, 1:27 PM