[jira] [Created] (FLINK-8146) Potential resource leak in PythonPlanBinder#unzipPythonLibrary

classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

[jira] [Created] (FLINK-8146) Potential resource leak in PythonPlanBinder#unzipPythonLibrary

Shang Yuanchun (Jira)
Ted Yu created FLINK-8146:
-----------------------------

             Summary: Potential resource leak in PythonPlanBinder#unzipPythonLibrary
                 Key: FLINK-8146
                 URL: https://issues.apache.org/jira/browse/FLINK-8146
             Project: Flink
          Issue Type: Bug
            Reporter: Ted Yu


{code}
    while (entry != null) {
...
    }
    zis.closeEntry();
{code}
Looking at the catch block inside the loop, it seems the intention is to close zis upon getting exception.
zis.close() should be called outside the loop.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)