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

This issue is archived. You can view it, but you can't modify it. Learn more

XMLWordPrintable

      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"}
      }
      }
      }
      }
      }
      

        1. issue.jpg
          22 kB
          Ramachandra Kamath Arbettu
        2. image-2022-10-17-12-53-05-254.png
          4 kB
          David Szabo

            Assignee:
            Unassigned
            Reporter:
            Ramachandra Kamath Arbettu
            Archiver:
            Jenkins Service Account

              Created:
              Updated:
              Archived: