You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@flink.apache.org by "Ted Yu (JIRA)" <ji...@apache.org> on 2015/10/24 18:06:27 UTC

[jira] [Created] (FLINK-2913) Close of ObjectOutputStream should be enclosed in finally block in FsStateBackend

Ted Yu created FLINK-2913:
-----------------------------

             Summary: Close of ObjectOutputStream should be enclosed in finally block in FsStateBackend
                 Key: FLINK-2913
                 URL: https://issues.apache.org/jira/browse/FLINK-2913
             Project: Flink
          Issue Type: Bug
            Reporter: Ted Yu
            Priority: Minor


{code}
      ObjectOutputStream os = new ObjectOutputStream(outStream);
      os.writeObject(state);
      os.close();
{code}
If IOException is thrown out of writeObject(), the close() call would be skipped.



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