You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by st...@apache.org on 2014/03/08 01:48:26 UTC

svn commit: r1575461 - /hbase/branches/0.96/hbase-client/src/main/java/org/apache/hadoop/hbase/zookeeper/ZKUtil.java

Author: stack
Date: Sat Mar  8 00:48:25 2014
New Revision: 1575461

URL: http://svn.apache.org/r1575461
Log:
HBASE-8604 improve reporting of incorrect peer address in replication

Modified:
    hbase/branches/0.96/hbase-client/src/main/java/org/apache/hadoop/hbase/zookeeper/ZKUtil.java

Modified: hbase/branches/0.96/hbase-client/src/main/java/org/apache/hadoop/hbase/zookeeper/ZKUtil.java
URL: http://svn.apache.org/viewvc/hbase/branches/0.96/hbase-client/src/main/java/org/apache/hadoop/hbase/zookeeper/ZKUtil.java?rev=1575461&r1=1575460&r2=1575461&view=diff
==============================================================================
--- hbase/branches/0.96/hbase-client/src/main/java/org/apache/hadoop/hbase/zookeeper/ZKUtil.java (original)
+++ hbase/branches/0.96/hbase-client/src/main/java/org/apache/hadoop/hbase/zookeeper/ZKUtil.java Sat Mar  8 00:48:25 2014
@@ -398,7 +398,7 @@ public class ZKUtil {
   public static String[] transformClusterKey(String key) throws IOException {
     String[] parts = key.split(":");
     if (parts.length != 3) {
-      throw new IOException("Cluster key invalid, the format should be:" +
+      throw new IOException("Cluster key passed " + key + " is invalid, the format should be:" +
           HConstants.ZOOKEEPER_QUORUM + ":hbase.zookeeper.client.port:"
           + HConstants.ZOOKEEPER_ZNODE_PARENT);
     }