HDFS-7948. TestDataNodeHotSwapVolumes#testAddVolumeFailures failed on Windows. (Contributed by Xiaoyu Yao)
This commit is contained in:
parent
402817cd9b
commit
fdd58aa32f
@ -1175,6 +1175,9 @@ Release 2.7.0 - UNRELEASED
|
|||||||
HDFS-7953. NN Web UI fails to navigate to paths that contain #.
|
HDFS-7953. NN Web UI fails to navigate to paths that contain #.
|
||||||
(kanaka kumar avvaru via wheat9)
|
(kanaka kumar avvaru via wheat9)
|
||||||
|
|
||||||
|
HDFS-7948. TestDataNodeHotSwapVolumes#testAddVolumeFailures failed on
|
||||||
|
Windows. (Xiaoyu Yao via Arpit Agarwal)
|
||||||
|
|
||||||
BREAKDOWN OF HDFS-7584 SUBTASKS AND RELATED JIRAS
|
BREAKDOWN OF HDFS-7584 SUBTASKS AND RELATED JIRAS
|
||||||
|
|
||||||
HDFS-7720. Quota by Storage Type API, tools and ClientNameNode
|
HDFS-7720. Quota by Storage Type API, tools and ClientNameNode
|
||||||
|
@ -521,7 +521,7 @@ public void testAddVolumeFailures() throws IOException {
|
|||||||
dn.getConf().get(DFS_DATANODE_DATA_DIR_KEY).split(",");
|
dn.getConf().get(DFS_DATANODE_DATA_DIR_KEY).split(",");
|
||||||
assertEquals(4, effectiveVolumes.length);
|
assertEquals(4, effectiveVolumes.length);
|
||||||
for (String ev : effectiveVolumes) {
|
for (String ev : effectiveVolumes) {
|
||||||
assertThat(new File(ev).getCanonicalPath(),
|
assertThat(StorageLocation.parse(ev).getFile().getCanonicalPath(),
|
||||||
is(not(anyOf(is(newDirs.get(0)), is(newDirs.get(2))))));
|
is(not(anyOf(is(newDirs.get(0)), is(newDirs.get(2))))));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user