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:00 UTC

svn commit: r1514552 - /hbase/trunk/bin/region_mover.rb

Author: tedyu
Date: Fri Aug 16 01:20:59 2013
New Revision: 1514552

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


Modified:
    hbase/trunk/bin/region_mover.rb

Modified: hbase/trunk/bin/region_mover.rb
URL: http://svn.apache.org/viewvc/hbase/trunk/bin/region_mover.rb?rev=1514552&r1=1514551&r2=1514552&view=diff
==============================================================================
--- hbase/trunk/bin/region_mover.rb (original)
+++ hbase/trunk/bin/region_mover.rb Fri Aug 16 01:20:59 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