https://prefect.io logo
Title
a

Ankit

02/10/2023, 9:18 AM
Hi everyone, I am running a flow which has 2 subflows in it. 2nd subflow is supposed to end the flow but it keeps running even after completing all the tasks. Both subflows are taking pandas dataframes from the flow. Is there something I missed?
c

Christopher Boyd

02/10/2023, 4:18 PM
How is it configured to end the flow ?
And where do your flows run ?
a

Ankit

02/10/2023, 6:04 PM
Hi @Christopher Boyd there are just some 20 tasks in the second flow, I am assuming that the flow will be marked as complete after all tasks are complete just like the first flow and thereafter parent flow will also be marked as complete. I am running these flows with kubernetes
Is this possible that it happened because subflow did not return anything?
Yes, it was because the subflow was not returing, thanks.