fancy-plumber-70674
07/18/2023, 4:26 AM@dynamic
def test_wf():
sub_workflow1 = workflow1()
sub_workflow2 = workflow2()
sub_workflow1 >> sub_workflow2
Would this syntax make it so that Flyte waits for sub_workflow1 to complete successfully and entirely before moving onto sub_workflow2?
We'd like to enable some AWS Batch-like behavior for some scheduled ML flowsdamp-lion-88352
07/18/2023, 4:34 AMtall-lock-23197
sub_workflow2
waits for the completion of sub_workflow1
.fancy-plumber-70674
07/18/2023, 5:56 AMtall-lock-23197