You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by "Ted Yu (JIRA)" <ji...@apache.org> on 2015/09/02 02:44:46 UTC

[jira] [Created] (FLINK-2605) Unclosed RandomAccessFile may leak resource in StaticFileServerHandler

Ted Yu created FLINK-2605:
-----------------------------

             Summary: Unclosed RandomAccessFile may leak resource in StaticFileServerHandler
                 Key: FLINK-2605
                 URL: https://issues.apache.org/jira/browse/FLINK-2605
             Project: Flink
          Issue Type: Bug
            Reporter: Ted Yu


{code}
    final RandomAccessFile raf;
    try {
      raf = new RandomAccessFile(file, "r");
    }
    catch (FileNotFoundException e) {
      sendError(ctx, NOT_FOUND);
      return;
    }
{code}
If there is exception after raf is created but before method returns, raf would be left unclosed.



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