From 4a8b0e90590fb603391557e8c02ec439c21c2a45 Mon Sep 17 00:00:00 2001 From: Michael Stack Date: Wed, 25 Jan 2012 19:47:13 +0000 Subject: [PATCH] HBASE-5278 HBase shell script refers to removed 'migrate' functionality git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1235884 13f79535-47bb-0310-9956-ffa450edef68 --- bin/hbase | 3 --- 1 file changed, 3 deletions(-) diff --git a/bin/hbase b/bin/hbase index dcc3e8432ab..c5692ffb746 100755 --- a/bin/hbase +++ b/bin/hbase @@ -78,7 +78,6 @@ if [ $# = 0 ]; then echo " hbck run the hbase 'fsck' tool" echo " hlog write-ahead-log analyzer" echo " hfile store file analyzer" - echo " migrate upgrade an hbase.rootdir" echo " zkcli run the ZooKeeper shell" echo "" echo "PROCESS MANAGEMENT" @@ -280,8 +279,6 @@ elif [ "$COMMAND" = "hlog" ] ; then CLASS='org.apache.hadoop.hbase.regionserver.wal.HLogPrettyPrinter' elif [ "$COMMAND" = "hfile" ] ; then CLASS='org.apache.hadoop.hbase.io.hfile.HFile' -elif [ "$COMMAND" = "migrate" ] ; then - CLASS='org.apache.hadoop.hbase.util.Migrate' elif [ "$COMMAND" = "zkcli" ] ; then # ZooKeeperMainServerArg returns '-server HOST:PORT' or empty string. SERVER_ARG=`"$bin"/hbase org.apache.hadoop.hbase.zookeeper.ZooKeeperMainServerArg`