Hi, I am trying to run another flow(using run_depl...
# ask-community
g
Hi, I am trying to run another flow(using run_deployment), is there is a way to track the status of it, I am not finding that in the documentation: https://docs.prefect.io/api-ref/prefect/deployments/#prefect.deployments.run_deployment
r
If you set the timeout to 0 it will return and you can use the flow run id to check the state
Copy code
api_client.read_flow_run(flow_run_id)
g
Thanks for your answer, is there is an example for using that method.