|
||||||||
|
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.

jelly file for the master node configuration is here
/pom/core/src/main/resources/jenkins/model/Jenkins/MasterComputer/configure.jelly
The java file that is accepting the request is called
jenkins.model.MasterBuildConfiguration
The method that is accepting parameters from the master node page is
jenkins.model.MasterBuildConfiguration.configure(StaplerRequest, JSONObject)
which code is. Since the functionality is working in mine i can not see where the problem is. I can see that the mode is being sent to the server properly since it parameter is either normal or exclusive.
j.setLabelString(json.optString("labelString", "")); return true; }/jenkins-core/src/main/resources/hudson/model/Messages.properties
Node.Mode.NORMAL=Utilize this slave as much as possible
Node.Mode.EXCLUSIVE=Leave this machine for tied jobs only