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

Anoop Sam John commented on HBASE-9402:
---------------------------------------

+1
                
> 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

Reply via email to