From 48064298492a6bce6f7d6c2bdcb853061a0b3f74 Mon Sep 17 00:00:00 2001 From: "Jain, Nihal" Date: Fri, 16 Aug 2024 13:57:12 +0530 Subject: [PATCH] HBASE-28786 Fix classname for command: copyreppeers in bin/hbase --- bin/hbase | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/hbase b/bin/hbase index ff0c57c055c7..937f7c22f2dd 100755 --- a/bin/hbase +++ b/bin/hbase @@ -763,7 +763,7 @@ elif [ "$COMMAND" = "hbtop" ] ; then elif [ "$COMMAND" = "credential" ] ; then CLASS='org.apache.hadoop.security.alias.CredentialShell' elif [ "$COMMAND" = "copyreppeers" ] ; then - CLASS='org.apache.hadoop.hbase.replication.ReplicationPeerMigrationTool' + CLASS='org.apache.hadoop.hbase.replication.CopyReplicationPeers' else CLASS=$COMMAND if [[ "$CLASS" =~ .*IntegrationTest.* ]] ; then