Hi Team, I have a failed metaflow run and I want ...
# ask-metaflow
k
Hi Team, I have a failed metaflow run and I want to programmatically fetch the state of this failed flow for knowing the step it got failed , is their any option available to get this state information?
1
a
You could use the client api! See https://docs.metaflow.org/metaflow/client#navigating-the-object-hierarchy You need to get into flow -> run -> step -> task, and there each task has
successful
flag
💯 3