Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[JENKINS-16215] : changelog(cherry picked from commit 19b3168)
Conflicts:
	changelog.html
  • Loading branch information
kutzi authored and vjuranek committed Jan 26, 2013
1 parent cae2f4d commit 15c3739
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions changelog.html
Expand Up @@ -58,6 +58,9 @@
<li class=bug>
Reduced size of memory leak in render-on-demand functionality used e.g. in configuration pages.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-16341">issue 16341</a>)
<li class=rfe>
Avoid unnecessary downloads if automatically installed tools are up-to-date
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-16215">issue 16215</a>)
<li class=bug>
Fixed <tt>NoClassDefFoundError: Base64</tt> with the <tt>-jnlpCredentials</tt> option.
(<a href="https://issues.jenkins-ci.org/browse/JENKINS-9679">issue 9679</a>)
Expand Down
4 changes: 2 additions & 2 deletions core/src/main/java/hudson/FilePath.java
Expand Up @@ -726,8 +726,8 @@ public boolean installIfNecessaryFrom(URL archive, TaskListener listener, String
try {
if(archive.toExternalForm().endsWith(".zip"))
unzipFrom(cis);
else
untarFrom(cis,GZIP);
else
untarFrom(cis,GZIP);
} catch (IOException e) {
throw new IOException2(String.format("Failed to unpack %s (%d bytes read of total %d)",
archive,cis.getByteCount(),con.getContentLength()),e);
Expand Down

0 comments on commit 15c3739

Please sign in to comment.