HBASE-4384 Hard to tell what causes failure in CloseRegionHandler#getCurrentVersion

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1170353 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2011-09-13 21:10:41 +00:00
parent 3bda78ec61
commit 12cc83fd03
2 changed files with 4 additions and 2 deletions

View File

@ -588,6 +588,8 @@ Release 0.90.5 - Unreleased
to repair META and ROOT. (todd)
HBASE-4321. Add a more comprehensive region split calculator for future use
in hbck. (Jonathan Hsieh)
HBASE-4384 Hard to tell what causes failure in CloseRegionHandler#getCurrentVersion
(Harsh J)
Release 0.90.4 - August 10, 2011

View File

@ -186,8 +186,8 @@ public class CloseRegionHandler extends EventHandler {
}
} catch (KeeperException e) {
LOG.warn("Error creating node in CLOSING state, aborting close of " +
regionInfo.getRegionNameAsString());
regionInfo.getRegionNameAsString(), e);
}
return expectedVersion;
}
}
}