You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by te...@apache.org on 2013/08/16 03:21:42 UTC

svn commit: r1514553 - /hbase/branches/0.95/bin/region_mover.rb

Author: tedyu
Date: Fri Aug 16 01:21:41 2013
New Revision: 1514553

URL: http://svn.apache.org/r1514553
Log:
HBASE-9236 region_mover#getTable() should use TableName.toString() instead of Bytes.toString()


Modified:
    hbase/branches/0.95/bin/region_mover.rb

Modified: hbase/branches/0.95/bin/region_mover.rb
URL: http://svn.apache.org/viewvc/hbase/branches/0.95/bin/region_mover.rb?rev=1514553&r1=1514552&r2=1514553&view=diff
==============================================================================
--- hbase/branches/0.95/bin/region_mover.rb (original)
+++ hbase/branches/0.95/bin/region_mover.rb Fri Aug 16 01:21:41 2013
@@ -60,7 +60,7 @@ def getTable(config, name)
   if not $TABLES
     $TABLES = {}
   end
-  key = Bytes.toString(name)
+  key = name.toString()
   if not $TABLES[key]
     $TABLES[key] = HTable.new(config, name)
   end