From 96d090e133fe3dba68bea8a67518e26a1ec84d9f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20Gond=C5=BEa?= Date: Thu, 14 Aug 2014 12:45:06 +0200 Subject: [PATCH] Noting #1221 --- changelog.html | 3 +++ core/src/main/java/hudson/model/Queue.java | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/changelog.html b/changelog.html index e1ece50aad..7821e98e37 100644 --- a/changelog.html +++ b/changelog.html @@ -61,6 +61,9 @@ Upcoming changes
  • Allow BuildStep to work with non-AbstractProject (issue 23713) +
  • + Make the lifetime of queue items cache configurable. + (issue 19691) diff --git a/core/src/main/java/hudson/model/Queue.java b/core/src/main/java/hudson/model/Queue.java index 7881a6de95..6a74b4cf42 100644 --- a/core/src/main/java/hudson/model/Queue.java +++ b/core/src/main/java/hudson/model/Queue.java @@ -155,7 +155,7 @@ public class Queue extends ResourceController implements Saveable { /** * Defines the refresh period for of the internal cache ({@link #itemsView}). * Data should be defined in milliseconds, default value - 1000; - * @since TODO: define the version + * @since 1.577 */ private static int CACHE_REFRESH_PERIOD = Integer.getInteger(Queue.class.getName() + ".cacheRefreshPeriod", 1000); -- GitLab