diff --git src/main/java/org/apache/hadoop/hbase/master/HMaster.java src/main/java/org/apache/hadoop/hbase/master/HMaster.java index 270f3f3..1dfbf0d 100644 --- src/main/java/org/apache/hadoop/hbase/master/HMaster.java +++ src/main/java/org/apache/hadoop/hbase/master/HMaster.java @@ -1207,6 +1207,12 @@ implements HMasterInterface, HMasterRegionInterface, MasterServices, Server { getLoadedCoprocessors()); } + try { + this.clusterStatusTracker.setClusterDown(); + } catch (KeeperException e) { + LOG.error("Error when trying to setClusterDown()",e); + } + if (abortNow(msg, t)) { if (t != null) LOG.fatal(msg, t); else LOG.fatal(msg);