Issue Type: Bug Bug
Assignee: Nicolas De Loof
Components: build-flow
Created: 15/Mar/13 4:20 PM
Description:

If I run the following flow script all goes well:

parallel (
{ build("Job1", param:1); build("Job2", param:1) },

{ build("Job1", param:2); build("Job2", param:2) }

)

However, when I change it so that I try to run the same job twice, in parallel, with the same params, the build flow job fails without any error traces in the log. So the following script:

parallel (
{ build("Job1", param:1); build("Job2", param:1) },

{ build("Job1", param:1); build("Job2", param:1) }

)

gives the following console output (and a FAILED status):

Started by user anonymous
Building in workspace C:\xxx\.jenkins\jobs\Flow1\workspace
parallel { Trigger job Job1 Trigger job Job1 Job1 #15 completed Trigger job Job2 Job2 #12 completed }

Collecting metadata...
Metadata collection done.
Finished: FAILURE

It would help alot if there was a clear error message saying something like: "Could not run parallel job 'Job1' since identical instances of it were scheduled"

Environment: Jenkins 1.505, Windows Vista, Build Flow 0.8
Project: Jenkins
Priority: Major Major
Reporter: Patrik Johansson
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/groups/opt_out.
 
 

Reply via email to