Sumit Kumar Rai
02/21/2022, 3:32 AMFlow AFlow BFlow BFlow AFlow AFlow BFlow AFlow AFlow AFlow BKevin Kho
Sumit Kumar Rai
02/21/2022, 5:43 AMAnna Geller
stream_logs=Truefrom prefect import Flow
from prefect.tasks.prefect import create_flow_run, wait_for_flow_run
with Flow("parent_flow") as flow:
    child_flow_run_id = create_flow_run(
        flow_name="child_flow_name", run_name="custom_run_name"
    )
    child_flowrunview = wait_for_flow_run(
        child_flow_run_id, raise_final_state=True, stream_logs=True
    )