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:
parent
a55c03b23e
commit
0b95330166
|
@ -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)
|
||||
|
|
|
@ -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();
|
||||
|
|
Loading…
Reference in New Issue