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:
Michael Stack 2010-03-30 05:55:01 +00:00
parent 3e02fe03d6
commit 59b13bfb7a
2 changed files with 4 additions and 4 deletions

View File

@ -465,6 +465,8 @@ Release 0.21.0 - Unreleased
HBASE-2348 [stargate] Stargate needs both JAR and WAR artifacts (Paul Smith
via Andrew Purtell)
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
HBASE-1961 HBase EC2 scripts

View File

@ -292,10 +292,8 @@ public class ServerManager implements HConstants {
HServerInfo storedInfo = this.serversToServerInfo.get(info.getServerName());
if (storedInfo == null) {
if (LOG.isDebugEnabled()) {
LOG.debug("Received report from unknown server -- telling it " +
LOG.warn("Received report from unknown server -- telling it " +
"to " + HMsg.CALL_SERVER_STARTUP + ": " + info.getServerName());
}
// The HBaseMaster may have been restarted.
// Tell the RegionServer to start over and call regionServerStartup()
return new HMsg[] {HMsg.CALL_SERVER_STARTUP};