Aleksei Potov
07/27/2023, 6:28 PM@task
def main_task():
return another_workflow() # sub workflow with another_task()
@workflow
def main_workflow():
return main_task()
But I only see main_task
in the execution view, not another_task()
or another_workflow()
Jay Ganbat
07/27/2023, 6:31 PM@dynamic
otherwise it will just executed as regular python code inside @task
Aleksei Potov
07/27/2023, 6:38 PMNiels Bantilan
07/27/2023, 9:12 PMAleksei Potov
07/28/2023, 2:14 AM