|
@@ -331,6 +331,8 @@ public class FrameworkUploader implements Runnable {
|
|
|
LOG.info("Compressing tarball");
|
|
|
try (TarArchiveOutputStream out = new TarArchiveOutputStream(
|
|
|
targetStream)) {
|
|
|
+ // Workaround for the compress issue present from 1.21: COMPRESS-587
|
|
|
+ out.setBigNumberMode(TarArchiveOutputStream.BIGNUMBER_STAR);
|
|
|
for (String fullPath : filteredInputFiles) {
|
|
|
LOG.info("Adding " + fullPath);
|
|
|
File file = new File(fullPath);
|