-
Bug
-
Resolution: Fixed
-
Minor
-
None
-
1.368-SNAPSHOT
Queue._getBuildableItems looks at queued items and says they are buildable on a Computer if the task is not tied to a label or label matches the Computer. If the task is not tied to a label it does NOT check if the Computer is Mode.EXCLUSIVE (ie, "for tied jobs only").
Thus, an on-demand slave may launch its connection when an untied job is in the queue, even though that slave cannot run the task.
_getBuildableItems should either check the Mode, or maybe better use Node.canTake(task) to determine if the task can run on this Computer.
Code changed in hudson
User: : mindless
Path:
trunk/hudson/main/core/src/main/java/hudson/model/Queue.java
trunk/www/changelog.html
http://jenkins-ci.org/commit/33185
Log:
[FIXED JENKINS-7054] use Node.canTake(Task) in Queue._getBuildableItems so that
Mode.EXCLUSIVE ("only for tied jobs") setting is respected.