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

svn commit: r1342095 - /hbase/trunk/src/main/java/org/apache/hadoop/hbase/ClusterId.java

Author: larsh
Date: Wed May 23 23:51:21 2012
New Revision: 1342095

URL: http://svn.apache.org/viewvc?rev=1342095&view=rev
Log:
HBASE-6063 Replication related failures on trunk after HBASE-5453 (Gregory Channan)

Modified:
    hbase/trunk/src/main/java/org/apache/hadoop/hbase/ClusterId.java

Modified: hbase/trunk/src/main/java/org/apache/hadoop/hbase/ClusterId.java
URL: http://svn.apache.org/viewvc/hbase/trunk/src/main/java/org/apache/hadoop/hbase/ClusterId.java?rev=1342095&r1=1342094&r2=1342095&view=diff
==============================================================================
--- hbase/trunk/src/main/java/org/apache/hadoop/hbase/ClusterId.java (original)
+++ hbase/trunk/src/main/java/org/apache/hadoop/hbase/ClusterId.java Wed May 23 23:51:21 2012
@@ -92,4 +92,12 @@ public class ClusterId {
   static ClusterId convert(final ClusterIdProtos.ClusterId cid) {
     return new ClusterId(cid.getClusterId());
   }
+
+  /**
+   * @see java.lang.Object#toString()
+   */
+  @Override
+  public String toString() {
+    return this.id;
+  }
 }
\ No newline at end of file