-
Type:
Bug
-
Resolution: Duplicate
-
Priority:
Minor
-
Component/s: blueocean-plugin
-
pacific
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'
}
}