Details
-
Bug
-
Status: Closed (View Workflow)
-
Minor
-
Resolution: Duplicate
-
None
-
-
pacific
Description
If you create a 3 stage pipeline, run it a few times (successfully) and then change it so it breaks in an early stage, the stage graph will show the incorrect "waiting" state.
node { stage('first') { //after a few runs break this script sh 'echo 42' } stage('second') { sh 'echo 42' } stage('third') { sh 'echo 42' } }