karteekaddanki
07/17/2020, 12:53 PMFlowRunTask
expected to update the runs of the child flow in prefect cloud? I'm not seeing it. I'm trying to implement backfill functionality using FlowRunTask
inside a generic wrapper flow. Any help on the idiomatic way to achieve backfill functionality would be appreciated.nicholas
07/17/2020, 1:15 PMkarteekaddanki
07/17/2020, 1:49 PMFlowRunTask
that I created for it to actually run. I am trying to get it work. I'll post any further issues that I encounter in this thread. Thanks for your quick response.nicholas
07/17/2020, 1:59 PMFlowRunTask
can await the return of the Flow Run it creates, and then take on the status of that Flow Run, so that may be helpful to what you're doing.karteekaddanki
07/17/2020, 4:41 PMtask = FlowRunTask()
with Flow("foo") as flow:
task.run()
but this doesn't
with Flow("foo") as flow:
task = FlowRunTask()
task.run()
This distinction is in the docs but might be worth highlighting.nicholas
07/17/2020, 4:51 PMkarteekaddanki
07/17/2020, 5:05 PM