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 2017/02/09 20:04:41 UTC

[jira] [Comment Edited] (FLINK-4848) keystoreFilePath should be checked against null in SSLUtils#createSSLServerContext

    [ https://issues.apache.org/jira/browse/FLINK-4848?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15582930#comment-15582930 ] 

Ted Yu edited comment on FLINK-4848 at 2/9/17 8:04 PM:
-------------------------------------------------------

There is similar issue with trustStoreFilePath:
{code}
        trustStoreFile = new FileInputStream(new File(trustStoreFilePath));
{code}


was (Author: yuzhihong@gmail.com):
There is similar issue with trustStoreFilePath:

{code}
        trustStoreFile = new FileInputStream(new File(trustStoreFilePath));
{code}

> keystoreFilePath should be checked against null in SSLUtils#createSSLServerContext
> ----------------------------------------------------------------------------------
>
>                 Key: FLINK-4848
>                 URL: https://issues.apache.org/jira/browse/FLINK-4848
>             Project: Flink
>          Issue Type: Bug
>          Components: Security
>            Reporter: Ted Yu
>            Priority: Minor
>
> {code}
>       String keystoreFilePath = sslConfig.getString(
>         ConfigConstants.SECURITY_SSL_KEYSTORE,
>         null);
> ...
>       try {
>         keyStoreFile = new FileInputStream(new File(keystoreFilePath));
> {code}
> If keystoreFilePath is null, the File ctor would throw NPE.



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)