YARN-2662. TestCgroupsLCEResourcesHandler leaks file descriptors. Contributed by Chris Nauroth.
This commit is contained in:
parent
777877d079
commit
d3afd730ac
|
@ -604,6 +604,8 @@ Release 2.6.0 - UNRELEASED
|
|||
|
||||
YARN-2649. Fixed TestAMRMRPCNodeUpdates test failure. (Ming Ma via jianhe)
|
||||
|
||||
YARN-2662. TestCgroupsLCEResourcesHandler leaks file descriptors. (cnauroth)
|
||||
|
||||
BREAKDOWN OF YARN-913 SUBTASKS AND RELATED JIRAS
|
||||
|
||||
YARN-2652 Add hadoop-yarn-registry package under hadoop-yarn. (stevel)
|
||||
|
|
|
@ -165,10 +165,11 @@ public class TestCgroupsLCEResourcesHandler {
|
|||
|
||||
private int readIntFromFile(File targetFile) throws IOException {
|
||||
Scanner scanner = new Scanner(targetFile);
|
||||
if (scanner.hasNextInt()) {
|
||||
return scanner.nextInt();
|
||||
try {
|
||||
return scanner.hasNextInt() ? scanner.nextInt() : -1;
|
||||
} finally {
|
||||
scanner.close();
|
||||
}
|
||||
return -1;
|
||||
}
|
||||
|
||||
@Test
|
||||
|
|
Loading…
Reference in New Issue