You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nifi.apache.org by "Matt Gilman (JIRA)" <ji...@apache.org> on 2015/02/23 19:19:11 UTC

[jira] [Commented] (NIFI-335) Site-to-Site can sometimes fail if compression is enabled

    [ https://issues.apache.org/jira/browse/NIFI-335?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14333612#comment-14333612 ] 

Matt Gilman commented on NIFI-335:
----------------------------------

+1 

> Site-to-Site can sometimes fail if compression is enabled
> ---------------------------------------------------------
>
>                 Key: NIFI-335
>                 URL: https://issues.apache.org/jira/browse/NIFI-335
>             Project: Apache NiFi
>          Issue Type: Bug
>          Components: Core Framework
>    Affects Versions: 0.0.1
>            Reporter: Mark Payne
>            Assignee: Mark Payne
>             Fix For: 0.0.2
>
>         Attachments: 0001-NIFI-335-Fixed-bug-that-returned-a-byte-instead-of-a.patch
>
>
> CompressionInputStream has a bug that causes it to return a negative value when calling read() if the value of a byte is negative. Currently returns
>         return buffer[bufferIndex++];
> Needs to return
>         return buffer[bufferIndex++] & 0xFF;



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)