cjo9900 commented on Bug JENKINS-16563

Please also run the following script and add the relevant output to the issue
Run from the script console at <server:port>/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 [email protected].
For more options, visit https://groups.google.com/groups/opt_out.
 
 

Reply via email to