HDFS-7951. Fix NPE for TestFsDatasetImpl#testAddVolumeFailureReleasesInUseLock on Linux. (Contributed by Xiaoyu Yao)
This commit is contained in:
parent
97341a4a1d
commit
6b7cf6e096
|
@ -878,6 +878,10 @@ Release 2.7.0 - UNRELEASED
|
||||||
HDFS-7950. Fix TestFsDatasetImpl#testAddVolumes failure on Windows.
|
HDFS-7950. Fix TestFsDatasetImpl#testAddVolumes failure on Windows.
|
||||||
(Xiaoyu Yao via Arpit Agarwal)
|
(Xiaoyu Yao via Arpit Agarwal)
|
||||||
|
|
||||||
|
HDFS-7951. Fix NPE for
|
||||||
|
TestFsDatasetImpl#testAddVolumeFailureReleasesInUseLock on Linux
|
||||||
|
(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
|
||||||
|
|
|
@ -330,7 +330,7 @@ public class TestFsDatasetImpl {
|
||||||
Storage.StorageDirectory sd = createStorageDirectory(badDir);
|
Storage.StorageDirectory sd = createStorageDirectory(badDir);
|
||||||
sd.lock();
|
sd.lock();
|
||||||
DataStorage.VolumeBuilder builder = new DataStorage.VolumeBuilder(storage, sd);
|
DataStorage.VolumeBuilder builder = new DataStorage.VolumeBuilder(storage, sd);
|
||||||
when(storage.prepareVolume(eq(datanode), eq(badDir),
|
when(storage.prepareVolume(eq(datanode), eq(badDir.getAbsoluteFile()),
|
||||||
Matchers.<List<NamespaceInfo>>any()))
|
Matchers.<List<NamespaceInfo>>any()))
|
||||||
.thenReturn(builder);
|
.thenReturn(builder);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue