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 PMMichel Lalancette
08/11/2026, 12:32 PMNick
08/11/2026, 4:54 PMpause_flow_run(wait_for_input=my_run_input)?Félix Pelletier
08/13/2026, 7:31 PMprefect.flow-run.Completed event.
{
"type": "event",
"posture": "Proactive",
"match": {
"prefect.resource.id": "prefect.flow-run.*"
},
"matchRelated": [
{
"prefect.resource.id": "prefect.tag.dataanalyticsengineering",
"prefect.resource.role": "tag"
},
{
"prefect.resource.id": "prefect.tag.alerting_on",
"prefect.resource.role": "tag"
}
],
"forEach": [
"prefect.resource.id"
],
"after": [
"prefect.flow-run.Running"
],
"expect": [
"prefect.flow-run.Failed",
"prefect.flow-run.Cancelled",
"prefect.flow-run.Completed",
"prefect.flow-run.TimedOut",
"prefect.flow-run.Crashed"
],
"threshold": 1,
"within": 14400
}petri.weckstrom
08/17/2026, 10:43 AMChalama Reddy
08/21/2026, 8:48 AMChalama Reddy
08/21/2026, 2:16 PMChalama Reddy
08/24/2026, 2:31 AMLukĂĄcs GĂĄl
08/25/2026, 9:41 AMJon Young
08/25/2026, 6:26 PMDennis Hinnenkamp
08/31/2026, 2:53 PMQuinn Alfaro
09/01/2026, 6:03 PMWilliam C.
09/07/2026, 2:25 AMvictoria.foster1001
09/07/2026, 2:46 PMmagnus.larsen0718
09/08/2026, 1:34 AMjkfe.jke
09/13/2026, 3:43 AMGiacomo Chiarella
09/22/2026, 1:51 PM