You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by jd...@apache.org on 2012/10/05 21:54:30 UTC

svn commit: r1394765 - /hbase/branches/0.92/src/main/java/org/apache/hadoop/hbase/zookeeper/RegionServerTracker.java

Author: jdcryans
Date: Fri Oct  5 19:54:29 2012
New Revision: 1394765

URL: http://svn.apache.org/viewvc?rev=1394765&view=rev
Log:
HBASE-5582  "No HServerInfo found for" should be a WARNING message

Modified:
    hbase/branches/0.92/src/main/java/org/apache/hadoop/hbase/zookeeper/RegionServerTracker.java

Modified: hbase/branches/0.92/src/main/java/org/apache/hadoop/hbase/zookeeper/RegionServerTracker.java
URL: http://svn.apache.org/viewvc/hbase/branches/0.92/src/main/java/org/apache/hadoop/hbase/zookeeper/RegionServerTracker.java?rev=1394765&r1=1394764&r2=1394765&view=diff
==============================================================================
--- hbase/branches/0.92/src/main/java/org/apache/hadoop/hbase/zookeeper/RegionServerTracker.java (original)
+++ hbase/branches/0.92/src/main/java/org/apache/hadoop/hbase/zookeeper/RegionServerTracker.java Fri Oct  5 19:54:29 2012
@@ -94,7 +94,8 @@ public class RegionServerTracker extends
         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);