HDFS-9237. NPE at TestDataNodeVolumeFailureToleration#tearDown. Contributed by Brahma Reddy Battula.

This commit is contained in:
Tsuyoshi Ozawa 2015-10-19 15:30:21 +09:00
parent 476a251e5e
commit 4c9c3955ae
2 changed files with 6 additions and 1 deletions

View File

@ -2074,6 +2074,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

View File

@ -76,7 +76,9 @@ public void setUp() throws Exception {
@After
public void tearDown() throws Exception {
cluster.shutdown();
if (cluster != null) {
cluster.shutdown();
}
}
/**