YARN-3602. TestResourceLocalizationService.testPublicResourceInitializesLocalDir fails Intermittently due to IOException from cleanup. Contributed by zhihai xu
(cherry picked from commit 333f9a896d
)
Conflicts:
hadoop-yarn-project/CHANGES.txt
This commit is contained in:
parent
6257ed8431
commit
f264939c47
|
@ -84,6 +84,9 @@ Release 2.7.3 - UNRELEASED
|
|||
YARN-3102. Decommisioned Nodes not listed in Web UI (Kuhu Shukla via
|
||||
jlowe)
|
||||
|
||||
YARN-3602. TestResourceLocalizationService.testPublicResourceInitializesLocalDir
|
||||
fails Intermittently due to IOException from cleanup. (zhihai xu via xgong)
|
||||
|
||||
Release 2.7.2 - 2016-01-25
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -191,7 +191,11 @@ public class TestResourceLocalizationService {
|
|||
@After
|
||||
public void cleanup() throws IOException {
|
||||
conf = null;
|
||||
FileUtils.deleteDirectory(new File(basedir.toString()));
|
||||
try {
|
||||
FileUtils.deleteDirectory(new File(basedir.toString()));
|
||||
} catch (IOException e) {
|
||||
// ignore
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
|
|
Loading…
Reference in New Issue