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

Stephan Ewen resolved FLINK-4659.
---------------------------------
       Resolution: Fixed
    Fix Version/s: 1.2.0

Fixed via 649f9578bce56e118ec973218271262286c534a9

> Potential resource leak due to unclosed InputStream in 
> SecurityContext#populateSystemSecurityProperties()
> ---------------------------------------------------------------------------------------------------------
>
>                 Key: FLINK-4659
>                 URL: https://issues.apache.org/jira/browse/FLINK-4659
>             Project: Flink
>          Issue Type: Bug
>            Reporter: Ted Yu
>            Assignee: Neelesh Srinivas Salian
>            Priority: Minor
>             Fix For: 1.2.0
>
>
> {code}
>                 try {
>                         Path jaasConfPath = 
> Files.createTempFile(JAAS_CONF_FILENAME, "");
>                         InputStream jaasConfStream = 
> SecurityContext.class.getClassLoader().getResourceAsStream(JAAS_CONF_FILENAME);
>                         Files.copy(jaasConfStream, jaasConfPath, 
> StandardCopyOption.REPLACE_EXISTING);
>                         jaasConfFile = jaasConfPath.toFile();
>                         jaasConfFile.deleteOnExit();
>                 } catch (IOException e) {
>                         throw new RuntimeException("SASL auth is enabled for 
> ZK but unable to " +
> {code}
> jaasConfStream should be closed in finally block.



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

Reply via email to