Issue Type: Bug Bug
Assignee: Kohsuke Kawaguchi
Components: workflow-plugin
Created: 16/Dec/14 12:45 AM
Description:

When a parallel step has some branches that finish early, these branches will disappear from the flow graph until the parallel step itself is completed (unless the said branch is the first branch, in which case it is always visible.)

This is undesirable as one cannot see how the other branches have failed.

The sample script that reproduces this problem:

node { 
    parallel(
      'abc' : {
        sh 'echo "hi"' 
        sh 'lkasdjflkasdjdflkasdjflkasdj' 
        sh 'echo "I do not get to here"' 
      }
      ,
      'waitForever' : {
        input id: '1870c52dbcc5b41f9a7dba1dc63a1954', message: 'This is just to prove a point', ok: 'Proceed', parameters: [] 
      }
      ,
      'someSimpleError' : {
        sh 'echo "hi"' 
        sh 'lkasdjflkasdjdflkasdjflkasdj' 
        sh 'echo "I do not get to here"' 
      }
    )
}
Project: Jenkins
Priority: Major Major
Reporter: Kohsuke Kawaguchi
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira

--
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 [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to