HBASE-5582 "No HServerInfo found for" should be a WARNING message (Kevin Odell via JD)
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1394768 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
aefd784268
commit
e52314f054
|
@ -95,7 +95,8 @@ public class RegionServerTracker extends ZooKeeperListener {
|
|||
serverName + "]");
|
||||
ServerName sn = ServerName.parseServerName(serverName);
|
||||
if (!serverManager.isServerOnline(sn)) {
|
||||
LOG.info(serverName.toString() + " is not online");
|
||||
LOG.warn(serverName.toString() + " is not online or isn't known to the master."+
|
||||
"The latter could be caused by a DNS misconfiguration.");
|
||||
return;
|
||||
}
|
||||
remove(sn);
|
||||
|
|
Loading…
Reference in New Issue