From 315bde60d0618c0b17ffeab3f812adce3586c3da Mon Sep 17 00:00:00 2001 From: Jesse Glick Date: Tue, 28 May 2013 12:43:15 -0400 Subject: [PATCH] [FIXED JENKINS-18119] Work around timing issue in sortable object. Note that when workaround is active, table will not get sorted properly. Probably OK since tables with large contents that *need* sorting probably take longer to finish rendering. --- changelog.html | 3 +++ core/src/main/java/jenkins/util/ProgressiveRendering.java | 2 +- .../main/resources/hudson/model/View/AsynchPeople/index.jelly | 4 +++- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/changelog.html b/changelog.html index 13b939e621..492aef617e 100644 --- a/changelog.html +++ b/changelog.html @@ -58,6 +58,9 @@ Upcoming changes
  • User icon in People broken if Jenkins root URL unconfigured. (issue 18118) +
  • + Progress bar sometimes broken in People. + (issue 18119) diff --git a/core/src/main/java/jenkins/util/ProgressiveRendering.java b/core/src/main/java/jenkins/util/ProgressiveRendering.java index 04b2f97956..d659d0b5ed 100644 --- a/core/src/main/java/jenkins/util/ProgressiveRendering.java +++ b/core/src/main/java/jenkins/util/ProgressiveRendering.java @@ -44,7 +44,7 @@ import org.kohsuke.stapler.bind.JavaScriptMethod; * (since it may be canceled if the user simply browses to another page while it is running). *
      *
    1. Write a {@code -- GitLab