Ted Yu created HBASE-9402:
-----------------------------
Summary: 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
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