YARN-3602. TestResourceLocalizationService.testPublicResourceInitializesLocalDir fails Intermittently due to IOException from cleanup. Contributed by zhihai xu
(cherry picked from commit 333f9a896d8a4407ce69cfd0dc8314587a339233) 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 void setup() throws IOException {
|
||||
@After
|
||||
public void cleanup() throws IOException {
|
||||
conf = null;
|
||||
try {
|
||||
FileUtils.deleteDirectory(new File(basedir.toString()));
|
||||
} catch (IOException e) {
|
||||
// ignore
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
|
Loading…
x
Reference in New Issue
Block a user