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

Hudson commented on HBASE-9402:
-------------------------------

FAILURE: Integrated in HBase-TRUNK #4457 (See 
[https://builds.apache.org/job/HBase-TRUNK/4457/])
HBASE-9402 initCause() uses wrong exception in 
ProtobufLogReader#readNext(HLog$Entry) (Ted Yu) (tedyu: rev 1519181)
* 
/hbase/trunk/hbase-server/src/main/java/org/apache/hadoop/hbase/regionserver/wal/ProtobufLogReader.java

                
> 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
>             Fix For: 0.98.0
>
>         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