From 750cdb64bf7115c225714eb19d9676817d0f1b23 Mon Sep 17 00:00:00 2001 From: Valentina Armenise Date: Tue, 1 Sep 2015 12:19:57 +0200 Subject: [PATCH] [JENKINS-30084] updated references of Jenkins Issue --- core/src/main/java/hudson/model/Queue.java | 4 +--- test/src/test/java/hudson/model/queue/WideExecutionTest.java | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/core/src/main/java/hudson/model/Queue.java b/core/src/main/java/hudson/model/Queue.java index 2876444cf2..21fe274e39 100644 --- a/core/src/main/java/hudson/model/Queue.java +++ b/core/src/main/java/hudson/model/Queue.java @@ -1438,7 +1438,7 @@ public class Queue extends ResourceController implements Saveable { } } - //this is to solve OSS-192. We iterate on the list of flyweight tasks and execute them + //this is to solve JENKINS-30084. We iterate on the list of flyweight tasks and execute them List flyweightItems = new ArrayList<>(flyWeightTasks.values()); for (FlyWeightItem f : flyweightItems) { if (!isBuildBlocked(f)) { @@ -2357,8 +2357,6 @@ public class Queue extends ResourceController implements Saveable { */ public final class FlyWeightItem extends NotWaitingItem { - boolean buildable; - public FlyWeightItem(WaitingItem wi) { super(wi); } diff --git a/test/src/test/java/hudson/model/queue/WideExecutionTest.java b/test/src/test/java/hudson/model/queue/WideExecutionTest.java index 271613fc1e..29fbd16027 100644 --- a/test/src/test/java/hudson/model/queue/WideExecutionTest.java +++ b/test/src/test/java/hudson/model/queue/WideExecutionTest.java @@ -95,7 +95,7 @@ public class WideExecutionTest { } } - @Issue("OSS-192") + @Issue("JENKINS-30084") @Test /* * this is to test that when the assigned executor is not available the flyweighttask is put into the buildable list, -- GitLab