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 2016/12/15 20:02:59 UTC

[jira] [Created] (FLINK-5347) Unclosed stream in OperatorBackendSerializationProxy#write()

Ted Yu created FLINK-5347:
-----------------------------

             Summary: Unclosed stream in OperatorBackendSerializationProxy#write()
                 Key: FLINK-5347
                 URL: https://issues.apache.org/jira/browse/FLINK-5347
             Project: Flink
          Issue Type: Bug
            Reporter: Ted Yu
            Priority: Minor


{code}
    public void write(DataOutputView out) throws IOException {
      out.writeUTF(getName());
      DataOutputViewStream dos = new DataOutputViewStream(out);
      InstantiationUtil.serializeObject(dos, getStateSerializer());
    }
{code}
dos should be closed upon return from the method.



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