HBASE-2385 Debug Message Received
git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@929001 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
3e02fe03d6
commit
59b13bfb7a
|
@ -465,6 +465,8 @@ Release 0.21.0 - Unreleased
|
||||||
HBASE-2348 [stargate] Stargate needs both JAR and WAR artifacts (Paul Smith
|
HBASE-2348 [stargate] Stargate needs both JAR and WAR artifacts (Paul Smith
|
||||||
via Andrew Purtell)
|
via Andrew Purtell)
|
||||||
HBASE-2389 HTable - delete / put unnecessary sync (Kay Kay via Stack)
|
HBASE-2389 HTable - delete / put unnecessary sync (Kay Kay via Stack)
|
||||||
|
HBASE-2385 Debug Message "Received report from unknown server" should be
|
||||||
|
INFO or WARN
|
||||||
|
|
||||||
NEW FEATURES
|
NEW FEATURES
|
||||||
HBASE-1961 HBase EC2 scripts
|
HBASE-1961 HBase EC2 scripts
|
||||||
|
|
|
@ -292,10 +292,8 @@ public class ServerManager implements HConstants {
|
||||||
|
|
||||||
HServerInfo storedInfo = this.serversToServerInfo.get(info.getServerName());
|
HServerInfo storedInfo = this.serversToServerInfo.get(info.getServerName());
|
||||||
if (storedInfo == null) {
|
if (storedInfo == null) {
|
||||||
if (LOG.isDebugEnabled()) {
|
LOG.warn("Received report from unknown server -- telling it " +
|
||||||
LOG.debug("Received report from unknown server -- telling it " +
|
"to " + HMsg.CALL_SERVER_STARTUP + ": " + info.getServerName());
|
||||||
"to " + HMsg.CALL_SERVER_STARTUP + ": " + info.getServerName());
|
|
||||||
}
|
|
||||||
// The HBaseMaster may have been restarted.
|
// The HBaseMaster may have been restarted.
|
||||||
// Tell the RegionServer to start over and call regionServerStartup()
|
// Tell the RegionServer to start over and call regionServerStartup()
|
||||||
return new HMsg[] {HMsg.CALL_SERVER_STARTUP};
|
return new HMsg[] {HMsg.CALL_SERVER_STARTUP};
|
||||||
|
|
Loading…
Reference in New Issue