Kyle McEntush
08/22/2020, 4:38 PMValueError: Could not infer an active Flow context.Chris White
@task
def task_one():
pass
@task
def task_two():
task_one() # will raise an error, alwaysKyle McEntush
08/22/2020, 6:22 PMKyle McEntush
08/22/2020, 6:22 PMChris White
.map successively to create longer mapped pipelines, e.g.,
with Flow("my-mapped-flow") as flow:
task_three.map(task_two.map(task_one))Chris White
Kyle McEntush
08/22/2020, 6:27 PMChris White
Kyle McEntush
08/22/2020, 6:34 PMChris White
TriggerFailed state, but other branches of the map will continue uninterrupted