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:13:51 UTC

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

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