HBASE-4029 Inappropriate checking of Logging Mode in HRegionServer

(Akash Ashok via Ted Yu)



git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1139522 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Zhihong Yu 2011-06-25 11:19:51 +00:00
parent a55c03b23e
commit 0b95330166
2 changed files with 3 additions and 1 deletions

View File

@ -133,6 +133,8 @@ Release 0.91.0 - Unreleased
the shell (Joey Echeverria)
HBASE-4020 "testWritesWhileGetting" unit test needs to be fixed.
(Vandana Ayyalasomayajula via Ted Yu)
HBASE-4029 Inappropriate checking of Logging Mode in HRegionServer
(Akash Ashok via Ted Yu)
IMPROVEMENTS
HBASE-3290 Max Compaction Size (Nicolas Spiegelberg via Stack)

View File

@ -626,7 +626,7 @@ public class HRegionServer implements HRegionInterface, HBaseRPCErrorHandler,
this.stopping = true;
LOG.info("Closing user regions");
closeUserRegions(this.abortRequested);
} else if (this.stopping && LOG.isDebugEnabled()) {
} else if (this.stopping) {
LOG.info("Only meta regions remain open");
if (!onlyMetaRegionsRemaining) {
onlyMetaRegionsRemaining = isOnlyMetaRegionsRemaining();