HDFS-9237. NPE at TestDataNodeVolumeFailureToleration#tearDown. Contributed by Brahma Reddy Battula.
This commit is contained in:
parent
476a251e5e
commit
4c9c3955ae
|
@ -2074,6 +2074,9 @@ Release 2.8.0 - UNRELEASED
|
||||||
HDFS-9157. [OEV and OIV] : Unnecessary parsing for mandatory arguements if
|
HDFS-9157. [OEV and OIV] : Unnecessary parsing for mandatory arguements if
|
||||||
'-h' option is specified as the only option (nijel via vinayakumarb)
|
'-h' option is specified as the only option (nijel via vinayakumarb)
|
||||||
|
|
||||||
|
HDFS-9237. NPE at TestDataNodeVolumeFailureToleration#tearDown.
|
||||||
|
(Brahma Reddy Battula via ozawa)
|
||||||
|
|
||||||
Release 2.7.2 - UNRELEASED
|
Release 2.7.2 - UNRELEASED
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -76,7 +76,9 @@ public class TestDataNodeVolumeFailureToleration {
|
||||||
|
|
||||||
@After
|
@After
|
||||||
public void tearDown() throws Exception {
|
public void tearDown() throws Exception {
|
||||||
cluster.shutdown();
|
if (cluster != null) {
|
||||||
|
cluster.shutdown();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue