You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by "Stephan Ewen (JIRA)" <ji...@apache.org> on 2017/01/06 09:59:58 UTC

[jira] [Closed] (FLINK-5390) input should be closed in finally block in YarnFlinkApplicationMasterRunner#loadJobGraph()

     [ https://issues.apache.org/jira/browse/FLINK-5390?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Stephan Ewen closed FLINK-5390.
-------------------------------

> input should be closed in finally block in YarnFlinkApplicationMasterRunner#loadJobGraph()
> ------------------------------------------------------------------------------------------
>
>                 Key: FLINK-5390
>                 URL: https://issues.apache.org/jira/browse/FLINK-5390
>             Project: Flink
>          Issue Type: Bug
>            Reporter: Ted Yu
>            Assignee: Roman Maier
>            Priority: Minor
>             Fix For: 1.3.0
>
>
> {code}
>         FileInputStream input = new FileInputStream(fp);
>         ObjectInputStream obInput = new ObjectInputStream(input);
>         jg = (JobGraph) obInput.readObject();
>         input.close();
> {code}
> If readObject() throws exception, input would be left unclosed.
> Similar issue is in AbstractYarnClusterDescriptor#startAppMaster() around line 726.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)