M HMaster.java

Don't log to stdout the fact that we're in safe mode...
    only does it once so user thinks we've actually exited
    safe mode when we could be stuck waiting on it.  Force
    user to look in logs.


git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@640633 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2008-03-24 23:07:03 +00:00
parent 46ff7775f6
commit 7f0818ede2
1 changed files with 0 additions and 1 deletions

View File

@ -183,7 +183,6 @@ public class HMaster extends Thread implements HConstants, HMasterInterface,
String message = "Waiting for dfs to exit safe mode...";
while (((DistributedFileSystem) fs).setSafeMode(
FSConstants.SafeModeAction.SAFEMODE_GET)) {
System.out.println(message);
LOG.info(message);
try {
Thread.sleep(this.threadWakeFrequency);