Hi team, I have a number of kedro nodes in my pipe...
# questions
t
Hi team, I have a number of kedro nodes in my pipeline, how can I ensure that node_z is always executed at the end.
d
In this situation you have to trick Kedro into topologically sorting it this way, so adding a dependency from another node, even if you don’t use it is the right way to do it
this 2