HDFS-5106. Merging change r1514911 from trunk to branch-2.

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/branches/branch-2@1514914 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Chris Nauroth 2013-08-16 22:37:24 +00:00
parent dc550bfe41
commit f766cc09ac
2 changed files with 5 additions and 1 deletions

View File

@ -129,6 +129,9 @@ Release 2.1.1-beta - UNRELEASED
HDFS-5105. TestFsck fails on Windows. (Chuan Liu via arp)
HDFS-5106. TestDatanodeBlockScanner fails on Windows due to incorrect path
format. (Chuan Liu via cnauroth)
Release 2.1.0-beta - 2013-08-22
INCOMPATIBLE CHANGES

View File

@ -440,7 +440,8 @@ private static void waitForBlockDeleted(ExtendedBlock blk, int dnIndex,
}
}
private static final String BASE_PATH = "/data/current/finalized";
private static final String BASE_PATH = (new File("/data/current/finalized"))
.getAbsolutePath();
@Test
public void testReplicaInfoParsing() throws Exception {