Index: src/main/java/org/apache/hadoop/hbase/catalog/CatalogTracker.java =================================================================== --- src/main/java/org/apache/hadoop/hbase/catalog/CatalogTracker.java (revision 1155098) +++ src/main/java/org/apache/hadoop/hbase/catalog/CatalogTracker.java (working copy) @@ -460,17 +460,21 @@ if (ioe instanceof NotServingRegionException) { t = ioe; } else { - throw e; + LOG.info("Failed verification of " + Bytes.toStringBinary(regionName) + + " at address=" + address + "; "); + return false; } } catch (IOException e) { Throwable cause = e.getCause(); if (cause != null && cause instanceof EOFException) { t = cause; } else if (cause != null && cause.getMessage() != null - && cause.getMessage().contains("Connection reset")) { + && cause.getMessage().contains("Connection reset")) { t = cause; } else { - throw e; + LOG.info("Failed verification of " + Bytes.toStringBinary(regionName) + + " at address=" + address + "; "); + return false; } } LOG.info("Failed verification of " + Bytes.toStringBinary(regionName) +