Matthew Seligson
04/21/2022, 4:25 PMKevin Kho
create_flow_run
takes in a delay so you can schedule it a few hours later. There was a recent PR for that. Is that what you need?Matthew Seligson
04/21/2022, 5:44 PMKevin Kho
create_flow_run
because that is the run method already you are callingMatthew Seligson
04/21/2022, 8:16 PMKevin Kho
scheduled_start_time
and you then pass it to StartFlowRun
create_flow_run
was introduced just because StartFlowRun
has an inconsistent return depending if wait=True/False
. If you do wait=True
, it’s very hard to new the new flow run id. So these functions were decoupled to create_flow_run
and wait_for_flow_run
Matthew Seligson
04/21/2022, 8:21 PMKevin Kho
Matthew Seligson
04/21/2022, 8:27 PMKevin Kho