You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hbase.apache.org by "Ted Yu (JIRA)" <ji...@apache.org> on 2014/04/26 00:02:17 UTC

[jira] [Created] (HBASE-11082) Potential unclosed TraceScope in FSHLog#replaceWriter()

Ted Yu created HBASE-11082:
------------------------------

             Summary: Potential unclosed TraceScope in FSHLog#replaceWriter()
                 Key: HBASE-11082
                 URL: https://issues.apache.org/jira/browse/HBASE-11082
             Project: HBase
          Issue Type: Bug
            Reporter: Ted Yu
            Priority: Minor


In the finally block starting at line 924:
{code}
    } finally {
      // Let the writer thread go regardless, whether error or not.
      if (zigzagLatch != null) {
        zigzagLatch.releaseSafePoint();
        // It will be null if we failed our wait on safe point above.
        if (syncFuture != null) blockOnSync(syncFuture);
      }
      scope.close();
{code}
If blockOnSync() throws IOException, the TraceScope would be left unclosed.



--
This message was sent by Atlassian JIRA
(v6.2#6252)