HDFS-9237. NPE at TestDataNodeVolumeFailureToleration#tearDown. Contributed by Brahma Reddy Battula.
(cherry picked from commit 4c9c3955ae
)
This commit is contained in:
parent
2c0dbf728a
commit
23bd017a7b
|
@ -1248,6 +1248,9 @@ Release 2.8.0 - UNRELEASED
|
|||
HDFS-9157. [OEV and OIV] : Unnecessary parsing for mandatory arguements if
|
||||
'-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
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -76,7 +76,9 @@ public class TestDataNodeVolumeFailureToleration {
|
|||
|
||||
@After
|
||||
public void tearDown() throws Exception {
|
||||
cluster.shutdown();
|
||||
if (cluster != null) {
|
||||
cluster.shutdown();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue