Shuchita Tripathi
04/21/2022, 6:12 PMKevin Kho
04/21/2022, 6:15 PMwith Flow(..) as flow:
a = task_a()
b = task_b(a)
The result is more about checkpointingShuchita Tripathi
04/21/2022, 6:18 PMKevin Kho
04/21/2022, 6:23 PMprint
will execute during flow build time instead of runtime so the task value isn’t there yet and you print the Task object itself.
If you print inside a task it should be right because the execution will take place during flow.run()