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)

Reply via email to