[JIRA] (JENKINS-38359) Not receiving enough events (SSE) for block scoped stages

2016-09-22 Thread jdu...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 James Dumay resolved as Won't Fix  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-38359  
 
 
  Not receiving enough events (SSE) for block scoped stages   
 

  
 
 
 
 

 
Change By: 
 James Dumay  
 
 
Status: 
 Open Resolved  
 
 
Resolution: 
 Won't Fix  
 

  
 
 
 
 

 
 
 

 
 
 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-38359) Not receiving enough events (SSE) for block scoped stages

2016-09-19 Thread mne...@cloudbees.com (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Michael Neale created an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Jenkins /  JENKINS-38359  
 
 
  Not receiving enough events (SSE) for block scoped stages   
 

  
 
 
 
 

 
Issue Type: 
  Bug  
 
 
Assignee: 
 Unassigned  
 
 
Components: 
 blueocean-plugin  
 
 
Created: 
 2016/Sep/19 10:25 PM  
 
 
Priority: 
  Blocker  
 
 
Reporter: 
 Michael Neale  
 

  
 
 
 
 

 
 When using the new block scoped stages, SSE events do not arrive correctly.  Using the pipeline below, the following events are received:  https://issues.jenkins-ci.org/secure/attachment/34010/34010_Screenshot+from+2016-09-19+16-59-36.png however, when non block scoped stages are used, the following events arrive:  https://issues.jenkins-ci.org/secure/attachment/34012/34012_Screenshot+from+2016-09-19+17-00-51.png Note that the new syntax is missing stage_id.  

 
node {
stage("hey") {
sh 'ping -c 5 www.apple.com'

}


stage("par") {
parallel (
"b1" : {
sh 'ping -c 2 www.apple.com'
},

"b2" : {
sh 'sleep 1 && ping -c 1 www.apple.com'
sh 'sleep 1 && ping -c 1 www.apple.com'
sh 'sleep 1 && ping -c 1 www.apple.com'
sh 'sleep 1 && ping -c 1 www.apple.com'
sh 'sleep 1 && ping -c 1 www.apple.com'
sh 'sleep 1 && ping -c 1 www.apple.com'
sh 'sleep 1 && ping -c 1 www.apple.com'
sh 'sleep 1 && ping -c 1 www.apple.com'
sh 'sleep 1 && ping -c 1 www.apple.com'
sh 'sleep 1 && ping -c 1 www.apple.com'
} 


)

}


stage("ho") {
sh 'ping -c 10 www.apple.com'
}

}