HBASE-12878 Incorrect HFile path in TestHFilePerformance print output (Vikas Vishwakarma)
Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/ca49c5eb Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/ca49c5eb Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/ca49c5eb Branch: refs/heads/branch-1.0 Commit: ca49c5eb18d57e15f1d4c2569a740bcd9de9b74e Parents: c2cf319 Author: Andrew Purtell <[email protected]> Authored: Mon Jan 19 12:46:44 2015 -0800 Committer: Andrew Purtell <[email protected]> Committed: Mon Jan 19 12:46:59 2015 -0800 ---------------------------------------------------------------------- .../org/apache/hadoop/hbase/io/hfile/TestHFilePerformance.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/ca49c5eb/hbase-server/src/test/java/org/apache/hadoop/hbase/io/hfile/TestHFilePerformance.java ---------------------------------------------------------------------- diff --git a/hbase-server/src/test/java/org/apache/hadoop/hbase/io/hfile/TestHFilePerformance.java b/hbase-server/src/test/java/org/apache/hadoop/hbase/io/hfile/TestHFilePerformance.java index 5f6a593..2bb7085 100644 --- a/hbase-server/src/test/java/org/apache/hadoop/hbase/io/hfile/TestHFilePerformance.java +++ b/hbase-server/src/test/java/org/apache/hadoop/hbase/io/hfile/TestHFilePerformance.java @@ -170,7 +170,7 @@ public class TestHFilePerformance extends AbstractHBaseTool { startTime(); Path path = new Path(ROOT_DIR, fileType + ".Performance"); - System.out.println(ROOT_DIR + path.getName()); + System.out.println(ROOT_DIR + Path.SEPARATOR + path.getName()); FSDataOutputStream fout = createFSOutput(path); if ("HFile".equals(fileType)){
