Uploaded image for project: 'Jenkins'
  1. Jenkins
  2. JENKINS-53587

Sequential parallel stages show green while still running

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: Minor Minor
    • blueocean-plugin

      Consider this pipeline:

      pipeline {
          agent {
              label 'linux'
          }
          stages {
              stage('Parallel') {
                  parallel {
                      stage('parallel 1') {
                          stages {
                              stage('parallel 1-1') {
                                  steps {
                                      sh 'sleep 30'
                                  }
                              }
                              stage('parallel 1-2') {
                                  steps {
                                      sh 'sleep 30'
                                  }
                              }
                          }
                      }
                      stage('parallel 2') {
                          stages {
                              stage('parallel 2-1') {
                                  steps {
                                      sh 'sleep 30'
                                  }
                              }
                              stage('parallel 2-2') {
                                  steps {
                                      sh 'sleep 30'
                                  }
                              }
                          }
                      }
                  }
              }
          }
      }
      

      In Blue Ocean, this shows one of the parallel stages as complete even though it is still running (parallel 2-2) is still running:

          [JENKINS-53587] Sequential parallel stages show green while still running

          Ilya Lederman created issue -
          Ilya Lederman made changes -
          Summary Original: Sequential parallel stages show as still running New: Sequential parallel stages show green while still running
          Olivier Lamy made changes -
          Link New: This issue duplicates JENKINS-53311 [ JENKINS-53311 ]
          Olivier Lamy made changes -
          Labels New: blueocean-backend
          Olivier Lamy made changes -
          Assignee New: Olivier Lamy [ olamy ]
          Resolution New: Fixed [ 1 ]
          Status Original: Open [ 1 ] New: Resolved [ 5 ]
          Olivier Lamy made changes -
          Status Original: Resolved [ 5 ] New: Fixed but Unreleased [ 10203 ]
          Olivier Lamy made changes -
          Status Original: Fixed but Unreleased [ 10203 ] New: Closed [ 6 ]

            olamy Olivier Lamy
            ilederman Ilya Lederman
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated:
              Resolved: