You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by "Chesnay Schepler (JIRA)" <ji...@apache.org> on 2018/07/02 09:55:01 UTC

[jira] [Reopened] (FLINK-9580) Potentially unclosed ByteBufInputStream in RestClient#readRawResponse

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

Chesnay Schepler reopened FLINK-9580:
-------------------------------------

> Potentially unclosed ByteBufInputStream in RestClient#readRawResponse
> ---------------------------------------------------------------------
>
>                 Key: FLINK-9580
>                 URL: https://issues.apache.org/jira/browse/FLINK-9580
>             Project: Flink
>          Issue Type: Bug
>          Components: REST
>    Affects Versions: 1.5.0, 1.6.0
>            Reporter: Ted Yu
>            Assignee: vinoyang
>            Priority: Minor
>              Labels: pull-request-available
>             Fix For: 1.6.0, 1.5.1
>
>
> Here is related code:
> {code}
>           ByteBufInputStream in = new ByteBufInputStream(content);
>           byte[] data = new byte[in.available()];
>           in.readFully(data);
> {code}
> In the catch block, ByteBufInputStream is not closed.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)