question
Pipeline run status doesn't terminate to `failed` or similar when there is an error
Hello,
I'm integrating with the pipeline API, and it seems like pipeline runs don't go to a final state assigned when they error out. I’ve created and queried a couple of errored out runs and they all have a status block like this:
"state":
{
"changed": "2024-08-21T04:07:43.786Z",
"error":
{
"message": "could not find cycle.json in repo"
},
"current": "running"
},
Note that current is still running eventhough the run ended hours ago with a pretty permanent error. I would expect the current
status to be something like failed
, so I can pick it up and determine the run is done (and cooked).