YARN-2988. Graph#save() may leak file descriptors. (Ted Yu via ozawa)
This commit is contained in:
parent
60530a6c4f
commit
4ca49c8634
|
@ -252,6 +252,8 @@ Release 2.7.0 - UNRELEASED
|
|||
YARN-2946. Fixed potential deadlock in RMStateStore. (Rohith Sharmaks via
|
||||
jianhe)
|
||||
|
||||
YARN-2988. Graph#save() may leak file descriptors. (Ted Yu via ozawa)
|
||||
|
||||
Release 2.6.0 - 2014-11-18
|
||||
|
||||
INCOMPATIBLE CHANGES
|
||||
|
|
|
@ -188,10 +188,10 @@ public class Graph {
|
|||
}
|
||||
|
||||
public void save(String filepath) throws IOException {
|
||||
OutputStreamWriter fout = new OutputStreamWriter(
|
||||
new FileOutputStream(filepath), Charset.forName("UTF-8"));
|
||||
fout.write(generateGraphViz());
|
||||
fout.close();
|
||||
try (OutputStreamWriter fout = new OutputStreamWriter(
|
||||
new FileOutputStream(filepath), Charset.forName("UTF-8"));) {
|
||||
fout.write(generateGraphViz());
|
||||
}
|
||||
}
|
||||
|
||||
public static List<Edge> combineEdges(List<Edge> edges) {
|
||||
|
|
Loading…
Reference in New Issue