From 846fc027a64e23da3f40c1a08f0aa47a19a1c2b2 Mon Sep 17 00:00:00 2001 From: Nihal Jain Date: Sat, 17 Aug 2024 12:09:30 +0530 Subject: [PATCH] HBASE-28786 Fix classname for command: copyreppeers in bin/hbase (#6162) Signed-off-by: Pankaj (cherry picked from commit 41dd87cd908d4d089d0b8cff6c88c01ed60622c5) --- bin/hbase | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/hbase b/bin/hbase index 9f96f24fe9d3..f888352235f0 100755 --- a/bin/hbase +++ b/bin/hbase @@ -772,7 +772,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