You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by "Robert Metzger (JIRA)" <ji...@apache.org> on 2016/02/26 13:34:18 UTC

[jira] [Resolved] (FLINK-3434) Return value from flinkYarnClient#deploy() should be checked against null

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

Robert Metzger resolved FLINK-3434.
-----------------------------------
       Resolution: Fixed
    Fix Version/s: 1.0.0

Resolved in http://git-wip-us.apache.org/repos/asf/flink/commit/0fb6e0dd

> Return value from flinkYarnClient#deploy() should be checked against null
> -------------------------------------------------------------------------
>
>                 Key: FLINK-3434
>                 URL: https://issues.apache.org/jira/browse/FLINK-3434
>             Project: Flink
>          Issue Type: Bug
>            Reporter: Ted Yu
>            Assignee: Chesnay Schepler
>            Priority: Minor
>             Fix For: 1.0.0
>
>
> In CliFrontend#getClient() :
> {code}
>         yarnCluster = flinkYarnClient.deploy();
>         yarnCluster.connectToCluster();
> {code}
> Looking at FlinkYarnClientBase#deployInternal(), null return is possible:
> {code}
>     try {
>       org.apache.flink.core.fs.FileSystem.setDefaultScheme(flinkConfiguration);
>     } catch (IOException e) {
>       LOG.error("Error while setting the default " +
>         "filesystem scheme from configuration.", e);
>       return null;
>     }
> {code}
> We should check the return from deploy() before calling connectToCluster().



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