[
https://issues.apache.org/jira/browse/HADOOP-1427?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12498640
]
Hadoop QA commented on HADOOP-1427:
-----------------------------------
-1, could not apply patch.
The patch command could not apply the latest attachment
http://issues.apache.org/jira/secure/attachment/12358112/GzipCodec.patch as a
patch to trunk revision r541096.
Console output:
http://lucene.zones.apache.org:8080/hudson/job/Hadoop-Patch/196/console
Please note that this message is automatically generated and may represent a
problem with the automation system and not the patch.
> Typo in GzipCodec.createInputStream - bufferSize
> ------------------------------------------------
>
> Key: HADOOP-1427
> URL: https://issues.apache.org/jira/browse/HADOOP-1427
> Project: Hadoop
> Issue Type: Bug
> Components: io
> Affects Versions: 0.12.3
> Reporter: Espen Amble Kolstad
> Priority: Minor
> Attachments: GzipCodec.patch
>
>
> Theres a typo (I think) in GzipCodec:
> {code}
> Decompressor decompressor =
> new
> ZlibDecompressor(ZlibDecompressor.CompressionHeader.AUTODETECT_GZIP_ZLIB,
> 64*1-24);
> {code}
> gives a buffersize of 40, should be:
> {code}
> Decompressor decompressor =
> new
> ZlibDecompressor(ZlibDecompressor.CompressionHeader.AUTODETECT_GZIP_ZLIB,
> 64*1024);
> {code}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.