Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[JENKINS-19034] Noting.
  • Loading branch information
jglick committed Sep 12, 2013
1 parent 62ed20e commit 259f16b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
6 changes: 3 additions & 3 deletions changelog.html
Expand Up @@ -61,6 +61,9 @@
<li class='major bug'>
Lazy-loading bug: builds go missing.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-19418">issue 19418</a>)
<li class=bug>
(re)create build number->id symlink if missing when updating permalink.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-19034">issue 19034</a>)
<li class=rfe>
Display the full display name in title for jobs and views.
(<a href="https://github.com/jenkinsci/jenkins/pull/884">pull request 884</a>)
Expand Down Expand Up @@ -191,9 +194,6 @@ <h3><a name=v1.526>What's new in 1.526</a> (2013/08/05)</h3>
<li class=bug>
Ensuring <code>/log/all</code> shows only <code>INFO</code> and above messages, even if custom loggers display <code>FINE</code> or below.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-18959">issue 18959</a>)
<li class=bug>
(re)create build number->id symlink if missing when updating permalink.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-19034">issue 19034</a>)
<li class=rfe>
Added a new monitor that detects and fixse out-of-order builds records.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-18289">issue 18289</a>)
Expand Down
Expand Up @@ -3,6 +3,7 @@ package jenkins.model
import hudson.Functions
import hudson.Util
import hudson.model.Run
import org.jvnet.hudson.test.Bug
import org.jvnet.hudson.test.FailureBuilder
import org.jvnet.hudson.test.HudsonTestCase

Expand Down Expand Up @@ -73,6 +74,7 @@ class PeepholePermalinkTest extends HudsonTestCase {
}
}

@Bug(19034)
void testRebuildBuildNumberPermalinks() {
def p = createFreeStyleProject()
def b = assertBuildStatusSuccess(p.scheduleBuild2(0))
Expand All @@ -84,4 +86,4 @@ class PeepholePermalinkTest extends HudsonTestCase {
link.updateCache(p, b)
assertTrue("build symlink hasn't been restored", f.exists())
}
}
}

0 comments on commit 259f16b

Please sign in to comment.