Skip to content

Commit

Permalink
[JENKINS-26092] Noting some things that could be improved.
Browse files Browse the repository at this point in the history
  • Loading branch information
jglick committed Mar 23, 2015
1 parent eb276d8 commit 09f7a2d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/main/resources/lib/hudson/buildProgressBar.jelly
Expand Up @@ -27,13 +27,13 @@ THE SOFTWARE.
Progress bar for a build in progress.

<st:attribute name="build" use="required" type="hudson.model.Queue.Executable">
Build in progress.
Build in progress. Must have a url property.
</st:attribute>
<st:attribute name="executor">
Executor that's carrying out the build. If null, defaults to "build.executor"
</st:attribute>
</st:documentation>
<j:set var="executor" value="${executor?:build.executor}" />
<j:set var="executor" value="${executor?:build.executor}" /> <!-- TODO use Executables.getExecutor -->
<t:progressBar tooltip="${%text(executor.timestampString,executor.estimatedRemainingTime)}"
red="${executor.isLikelyStuck()}"
pos="${executor.progress}" href="${rootURL}/${build.url}console"/>
Expand Down

0 comments on commit 09f7a2d

Please sign in to comment.