-
Bug
-
Resolution: Fixed
-
Minor
-
None
-
Jenkins 2.11
pipeline-stage-view-plugin 1.5
We have implemented a retry mechanism in our pipeline and if the step fails in the first run, it is retried and then succeeds, the stage is still shown as failed, but the build is green.
See the attached screenshot. The second stage is shown as failed which was retried once.
To reproduce:
node { stage "1" stage "2" def counter = 0 waitUntil { counter++ try { if (counter == 1) { sh "false" } return true } catch (e) { return false } } stage "3" }
- duplicates
-
JENKINS-34212 Visualization shows stage failed when an exception is caught
-
- Closed
-
Reproducing this on my own system, I've confirmed this caused by
JENKINS-34212- and the fix that I have prepared in https://github.com/jenkinsci/pipeline-stage-view-plugin/pull/21 for that issue will also resolve it. You should have your fix next week when it's out of review and I've cut the release.