HBASE-6063 Replication related failures on trunk after HBASE-5453 (Gregory Channan)
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1342095 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
49349a35b0
commit
495ecfbc16
|
@ -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;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue