@workflow def n_workflow(branch_name:str, am:str, ...
# ask-the-community
k
@workflow def n_workflow(branch_name:str, am:str, ame:str, vi:typing.List[str], Equ:str, na:str, fpr:str, ra:typing.List[str], raa:typing.List[str], maa:int, af:str) -> None: abc = data_preparation(branch_name=branch_name, am=am, ame=ame, vi=vi, Equ=Equ, na=na, fpr=fpr, ra=ra, raa=raa, maa=maa, af=af) task_run(abc=abc) In this workflow, while running it through flyte. I was unable to run sequentially. If I launch this "n_workflow" workflow runs successfully for this "data_preparation" task and I need to rerun this "task_run" task separately it to run the next task "task_run". Can you help me to fix this issue?
k
I do not follow, do you want to make it so that task_run can be invoked after task_run again?
150 Views