You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@hbase.apache.org by "Ted Yu (JIRA)" <ji...@apache.org> on 2013/08/31 01:15:51 UTC

[jira] [Updated] (HBASE-9402) initCause() uses wrong exception in ProtobufLogReader#readNext(HLog$Entry)

     [ https://issues.apache.org/jira/browse/HBASE-9402?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Ted Yu updated HBASE-9402:
--------------------------

    Attachment: 9402.patch
    
> initCause() uses wrong exception in ProtobufLogReader#readNext(HLog$Entry)
> --------------------------------------------------------------------------
>
>                 Key: HBASE-9402
>                 URL: https://issues.apache.org/jira/browse/HBASE-9402
>             Project: HBase
>          Issue Type: Bug
>            Reporter: Ted Yu
>            Assignee: Ted Yu
>            Priority: Minor
>         Attachments: 9402.patch
>
>
> At line 250:
> {code}
>           throw (EOFException) new EOFException("EOF " + message).
>               initCause(realEofEx != null ? ex : realEofEx);
> {code}
> Looks like the position of realEofEx and ex should be like this:
> {code}
>               initCause(realEofEx != null ? realEofEx : ex);
> {code}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira