-
Bug
-
Resolution: Unresolved
-
Blocker
-
-
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"} } } } } }
- is duplicated by
-
JENKINS-47813 timings in stage tooltip are bogus
- Closed