[JIRA] (JENKINS-16563) "Build on every online node" builds on nodes marked as offline

2013-03-19 Thread 1990.a...@gmail.com (JIRA)















































Alex Vesely
 resolved  JENKINS-16563 as Cannot Reproduce


"Build on every online node" builds on nodes marked as offline
















Happened intermittently in the first place; cannot reproduce on 1.506.





Change By:


Alex Vesely
(20/Mar/13 5:40 AM)




Status:


Open
Resolved





Resolution:


Cannot Reproduce



























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 jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 


[JIRA] (JENKINS-16563) "Build on every online node" builds on nodes marked as offline

2013-03-19 Thread 1990.a...@gmail.com (JIRA)












































  
Alex Vesely
 edited a comment on  JENKINS-16563


"Build on every online node" builds on nodes marked as offline
















Can't reproduce it anymore on 1.506. I should probably close the issue. Thanks very much for your help.

For the record: all Linux slaves I was using were connected via SSH.



























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 jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 


[JIRA] (JENKINS-16563) "Build on every online node" builds on nodes marked as offline

2013-03-19 Thread 1990.a...@gmail.com (JIRA)














































Alex Vesely
 commented on  JENKINS-16563


"Build on every online node" builds on nodes marked as offline















Can't reproduce it anymore on 1.506. I should probably close the issue.

For the record: all Linux slaves I was using were connected via SSH.



























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 jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 


[JIRA] (JENKINS-16563) "Build on every online node" builds on nodes marked as offline

2013-03-16 Thread d...@fortysix.ch (JIRA)














































domi
 commented on  JENKINS-16563


"Build on every online node" builds on nodes marked as offline















what kind of slaves do you have (explicitly the one behaving wrong)? (JNLP, SSH,...) 



























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 jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 


[JIRA] (JENKINS-16563) "Build on every online node" builds on nodes marked as offline

2013-03-16 Thread d...@fortysix.ch (JIRA)














































domi
 commented on  JENKINS-16563


"Build on every online node" builds on nodes marked as offline















sorry, but I'm not able to reproduce this issue...



























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 jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 


[JIRA] (JENKINS-16563) "Build on every online node" builds on nodes marked as offline

2013-02-01 Thread 1990.a...@gmail.com (JIRA)














































Alex Vesely
 commented on  JENKINS-16563


"Build on every online node" builds on nodes marked as offline















Triggering build log:


trigger build on Jenkins (master)
trigger build on node1 (node1)
trigger build on node2 (node2)
trigger build on node3 (node3)
trigger build on node4 (node4)
define: [LabelParameterValue: label=master]
define: [LabelParameterValue: label=node1]
define: [LabelParameterValue: label=node2]
define: [LabelParameterValue: label=node3]
define: [LabelParameterValue: label=node4]
Waiting for the completion of clean_one
ERROR: clean_one aborted. <  manually aborted job that was hanging in queue.  
Notifying upstream projects of job completion
Finished: FAILURE




Marking a node as offline and running the script:

node: Jenkins online true Executors: 2
node: node1 online true Executors: 2
node: node2 online true Executors: 2
node: node3 online false Executors: 2
node: node4 online true Executors: 2





























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 jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 


[JIRA] (JENKINS-16563) "Build on every online node" builds on nodes marked as offline

2013-01-31 Thread cjo9...@java.net (JIRA)














































cjo9900
 commented on  JENKINS-16563


"Build on every online node" builds on nodes marked as offline















Please also run the following script and add the relevant output to the issue
Run from the script console at /script

This will list the state of all nodes and the parameters that the AllNodesBuildParameterFactory uses to make its checks [1].


Computer[] nodes = Jenkins.getInstance().getComputers();

for(Computer c : nodes) {
	Node n = c.getNode();
	if (n!=null) {
		println("node: "+n.getDisplayName() + " online " + c.isOnline() + " Executors: " +  c.getNumExecutors())
	}
}


[1] https://github.com/jenkinsci/nodelabelparameter-plugin/blob/master/src/main/java/org/jvnet/jenkins/plugins/nodelabelparameter/parameterizedtrigger/AllNodesBuildParameterFactory.java



























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 jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 


[JIRA] (JENKINS-16563) "Build on every online node" builds on nodes marked as offline

2013-01-31 Thread cjo9...@java.net (JIRA)














































cjo9900
 updated  JENKINS-16563


"Build on every online node" builds on nodes marked as offline
















Change By:


cjo9900
(31/Jan/13 3:20 PM)




Assignee:


huybrechts
domi





Component/s:


parameterized-trigger



























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 jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 


[JIRA] (JENKINS-16563) "Build on every online node" builds on nodes marked as offline

2013-01-31 Thread cjo9...@java.net (JIRA)














































cjo9900
 updated  JENKINS-16563


"Build on every online node" builds on nodes marked as offline
















The "Build on every online node" parameter factory is added by the node label parameter plugin so moving to the correct component.

Please add the log of the triggering build, so that the details can be seen.





Change By:


cjo9900
(31/Jan/13 3:20 PM)




Component/s:


nodelabelparameter



























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 jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 


[JIRA] (JENKINS-16563) "Build on every online node" builds on nodes marked as offline

2013-01-30 Thread 1990.a...@gmail.com (JIRA)














































Alex Vesely
 created  JENKINS-16563


"Build on every online node" builds on nodes marked as offline















Issue Type:


Bug



Assignee:


huybrechts



Components:


parameterized-trigger



Created:


31/Jan/13 5:48 AM



Description:


I have a job that triggers certain "cleaning" jobs on every node available to Jenkins (using the "Build on every online node" parameter factory).

During the day, I noticed that one of my nodes became unstable for some reason, so I marked it as offline, so no builds were running on it.

However, the parameter factory still created a build to run on the offline node. It was hanging in the queue, waiting for the node to come back online.

I believe this behavior contradicts the factory description.




Environment:


JENKINS 1.480.1 LTS




Project:


Jenkins



Priority:


Major



Reporter:


Alex Vesely

























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 jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.