HBASE-9236 region_mover#getTable() should use TableName.toString() instead of Bytes.toString()

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1514552 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Zhihong Yu 2013-08-16 01:20:59 +00:00
parent 2b14f9db32
commit 01f291e7b5
1 changed files with 1 additions and 1 deletions

View File

@ -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