mirror of
https://github.com/internetarchive/heritrix3.git
synced 2026-08-28 17:36:54 +00:00
(W)ARCs not being written compressed by default
* WriterPoolProcessor
set 'compress' field default to true
This commit is contained in:
@@ -68,9 +68,10 @@ implements Lifecycle {
|
||||
Logger.getLogger(WriterPoolProcessor.class.getName());
|
||||
|
||||
/**
|
||||
* Compress files when "writing to disk.
|
||||
* Whether to gzip-compress files when writing to disk;
|
||||
* by default true, meaning do-compress.
|
||||
*/
|
||||
boolean compress = false;
|
||||
boolean compress = true;
|
||||
public boolean getCompress() {
|
||||
return compress;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user