From 41dd87cd908d4d089d0b8cff6c88c01ed60622c5 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 --- 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