From af89f5e9097cb979de5d5c39aaa9d8976d314d9b Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Tue, 9 Aug 2011 18:24:03 -0700 Subject: [PATCH] [FIXED JENKINS-10414] expose the item ID --- changelog.html | 3 +++ core/src/main/java/hudson/model/Queue.java | 1 + 2 files changed, 4 insertions(+) diff --git a/changelog.html b/changelog.html index 409c74f826..078b3bf487 100644 --- a/changelog.html +++ b/changelog.html @@ -69,6 +69,9 @@ Upcoming changes
  • OS X package now provides customizable commandline (pull request 195) +
  • + Improved the remote API for queue + (issue 10414)
  • Added a dignosis CLI command to report the current granted authorities.
  • diff --git a/core/src/main/java/hudson/model/Queue.java b/core/src/main/java/hudson/model/Queue.java index 6a1727b3a9..1efba04532 100644 --- a/core/src/main/java/hudson/model/Queue.java +++ b/core/src/main/java/hudson/model/Queue.java @@ -1181,6 +1181,7 @@ public class Queue extends ResourceController implements Saveable { * VM-wide unique ID that tracks the {@link Task} as it moves through different stages * in the queue (each represented by different subtypes of {@link Item}. */ + @Exported public final int id; /** -- GitLab