Martim Lobao
09/10/2021, 4:06 PMperson-build
in the schematic view, but that just takes me to the local (“zoomed-in”) view of the task itself, i can’t see the DAG for the person-build flow run. the only workaround I’ve found is to inspect the logs and copy the link to the flow run from there.
am i missing something obvious or is there no easy way to access a subflow’s details?
this is basically our setup:
person_build_flow = StartFlowRun(flow_name="person-build", project_name=get_stage(), wait=True)
release_flow = StartFlowRun(flow_name="release", project_name=get_stage(), wait=True)
with Flow(
"build-then-release",
executor=LocalDaskExecutor(num_workers=8),
result=PrefectResult(),
) as flow:
release_flow(upstream_tasks=[person_build_flow])
Kevin Kho
Martim Lobao
09/10/2021, 4:20 PMMartim Lobao
09/10/2021, 4:20 PMJ. Martins
09/15/2021, 8:31 AMMartim Lobao
09/15/2021, 11:11 AM