HBASE-15022 replication_admin.rb throws undefined method 
`getZooKeeperClusterKey' for ZKUtil


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/9a297ef0
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/9a297ef0
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/9a297ef0

Branch: refs/heads/hbase-12439
Commit: 9a297ef0a54de736bad53de3b0b518a9eec1865c
Parents: f56abf7
Author: Matteo Bertozzi <matteo.berto...@cloudera.com>
Authored: Mon Dec 21 13:20:26 2015 -0800
Committer: Matteo Bertozzi <matteo.berto...@cloudera.com>
Committed: Mon Dec 21 13:20:26 2015 -0800

----------------------------------------------------------------------
 hbase-shell/src/main/ruby/hbase/replication_admin.rb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/9a297ef0/hbase-shell/src/main/ruby/hbase/replication_admin.rb
----------------------------------------------------------------------
diff --git a/hbase-shell/src/main/ruby/hbase/replication_admin.rb 
b/hbase-shell/src/main/ruby/hbase/replication_admin.rb
index 617073b..2a24829 100644
--- a/hbase-shell/src/main/ruby/hbase/replication_admin.rb
+++ b/hbase-shell/src/main/ruby/hbase/replication_admin.rb
@@ -22,7 +22,7 @@ include Java
 java_import org.apache.hadoop.hbase.client.replication.ReplicationAdmin
 java_import org.apache.hadoop.hbase.replication.ReplicationPeerConfig
 java_import org.apache.hadoop.hbase.util.Bytes
-java_import org.apache.hadoop.hbase.zookeeper.ZKUtil
+java_import org.apache.hadoop.hbase.zookeeper.ZKConfig
 java_import org.apache.hadoop.hbase.TableName
 
 # Wrapper for org.apache.hadoop.hbase.client.replication.ReplicationAdmin
@@ -62,7 +62,7 @@ module Hbase
 
         # Cluster Key is required for ReplicationPeerConfig for a custom 
replication endpoint
         if !endpoint_classname.nil? and cluster_key.nil?
-          cluster_key = ZKUtil.getZooKeeperClusterKey(@configuration)
+          cluster_key = ZKConfig.getZooKeeperClusterKey(@configuration)
         end
 
         # Optional parameters

Reply via email to