HBASE-11082 Potential unclosed TraceScope in FSHLog#replaceWriter()

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1590997 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
ndimiduk 2014-04-29 14:51:26 +00:00
parent a825ca179b
commit 63bdc72447
1 changed files with 9 additions and 6 deletions

View File

@ -922,13 +922,16 @@ class FSHLog implements HLog, Syncable {
LOG.error("Failed close of HLog writer " + oldPath + ", unflushedEntries=" + count, e);
throw new FailedLogCloseException(oldPath + ", unflushedEntries=" + count, e);
} 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);
try {
// 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);
}
} finally {
scope.close();
}
scope.close();
}
return newPath;
}