Repository: hbase Updated Branches: refs/heads/0.98 008cf7954 -> d081756e7 refs/heads/branch-1 2f90bc5e2 -> 453f9294b refs/heads/branch-1.0 c2cf3199c -> ca49c5eb1 refs/heads/master 4d31779dd -> 53815afc1
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/53815afc Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/53815afc Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/53815afc Branch: refs/heads/master Commit: 53815afc1023a624d6b6069f4111692951a78848 Parents: 4d31779 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:44 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/53815afc/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 8f62639..78de413 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)){
