Skip to content

Commit

Permalink
FIXED JENKINS-10629] - Enable BigNumber mode to support archiving of …
Browse files Browse the repository at this point in the history
…files with size >8Gb

BIGNUMBER_STAR mode has been selected, because it utilizes GNU extensions (like LONGFILE_GNU does).
  • Loading branch information
oleg-nenashev committed Apr 14, 2015
1 parent b6c7b83 commit 4ddeeb8
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions core/src/main/java/hudson/util/io/TarArchiver.java
Expand Up @@ -61,6 +61,7 @@ public void flush() throws IOException {
// so don't do anything in flush
}
});
tar.setBigNumberMode(TarArchiveOutputStream.BIGNUMBER_STAR);
tar.setLongFileMode(TarArchiveOutputStream.LONGFILE_GNU);
}

Expand Down

0 comments on commit 4ddeeb8

Please sign in to comment.