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

Parallel stage tool tip shows 0s for every stage irrespective of the execution time.

XMLWordPrintable

    • Blue Ocean - Candidates

      In a pipeline with parallel stages, tool tip of the stage shows "passed in 0s" as tool tip for every stage irrespective of how log each stage took for execution. However, correct message is shown for stages which are not parallel.

      simple pipeline to reproduce the bug

      ================================

      pipeline {
      agent any
      stages {
      stage("first stage") {
      steps {sh "sleep 5"}
      }
      stage('Three parallel stages with different execution time'){
      parallel{
      stage("One"){
      steps {sh "sleep 5"}
      }
      stage("Two"){
      steps {sh "sleep 10"}
      }
      stage("Three"){
      steps {sh "sleep 15"}
      }
      }
      }
      }
      }
      

            Unassigned Unassigned
            rkamath3 Ramachandra Kamath Arbettu
            Votes:
            15 Vote for this issue
            Watchers:
            20 Start watching this issue

              Created:
              Updated: