[JIRA] (JENKINS-40031) Progress bar in stage not shown correctly if using parallel step in stage

2016-12-01 Thread svano...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Sam Van Oort closed an issue as Fixed  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Duplicate of existing issue – this is resolved by installing workflow-api version 2.8 (landing in the update center now).   
 

  
 
 
 
 

 
 Jenkins /  JENKINS-40031  
 
 
  Progress bar in stage not shown correctly if using parallel step in stage   
 

  
 
 
 
 

 
Change By: 
 Sam Van Oort  
 
 
Status: 
 Open Closed  
 
 
Resolution: 
 Fixed  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenki

[JIRA] (JENKINS-40031) Progress bar in stage not shown correctly if using parallel step in stage

2016-11-25 Thread m...@jochen-fuerbacher.de (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jochen A. Fürbacher updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-40031  
 
 
  Progress bar in stage not shown correctly if using parallel step in stage   
 

  
 
 
 
 

 
Change By: 
 Jochen A. Fürbacher  
 
 
Attachment: 
 JENKINS-40031.png  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.1.7#71011-sha1:2526d7c)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] (JENKINS-40031) Progress bar in stage not shown correctly if using parallel step in stage

2016-11-25 Thread m...@jochen-fuerbacher.de (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Jochen A. Fürbacher created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-40031  
 
 
  Progress bar in stage not shown correctly if using parallel step in stage   
 

  
 
 
 
 

 
Issue Type: 
  Bug  
 
 
Assignee: 
 Sam Van Oort  
 
 
Components: 
 pipeline-stage-view-plugin  
 
 
Created: 
 2016/Nov/25 9:38 AM  
 
 
Priority: 
  Minor  
 
 
Reporter: 
 Jochen A. Fürbacher  
 

  
 
 
 
 

 
 If I use a parallel step within a stage block, the progress bar of the stage during the build is not showing correctly the progress. 

 

stage('Stage 3') {
parallel (
el1: { sleep 10 },
el2: { sleep 20 }
)
 }
 

 When building the example above, the progress bar of the stage shows finished after 10 seconds (with the duration of the first parallel thread). However, the main progress bar (of all stages) runs well. When the second parallel thread is finished (after 20 seconds), the duration of the stage changes to the complete duration of the stage (20 seconds).  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment