HBASE-82 Fix toString in migation
git-svn-id: https://svn.apache.org/repos/asf/hadoop/hbase/trunk@657125 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
3f3e2c5756
commit
1eda3c2439
|
@ -342,7 +342,7 @@ public class Migrate extends Configured implements Tool {
|
|||
throws IOException {
|
||||
// Create directory where table will live
|
||||
|
||||
Path tableDir = new Path(rootdir, tableName.toString());
|
||||
Path tableDir = new Path(rootdir, Bytes.toString(tableName));
|
||||
fs.mkdirs(tableDir);
|
||||
|
||||
// Move the old region directory under the table directory
|
||||
|
|
Loading…
Reference in New Issue