[jira] [Created] (FLINK-4089) Ineffective null check in YarnClusterClient#getApplicationStatus()

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

[jira] [Created] (FLINK-4089) Ineffective null check in YarnClusterClient#getApplicationStatus()

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

             Summary: Ineffective null check in YarnClusterClient#getApplicationStatus()
                 Key: FLINK-4089
                 URL: https://issues.apache.org/jira/browse/FLINK-4089
             Project: Flink
          Issue Type: Bug
            Reporter: Ted Yu


Here is related code:
{code}
    if(pollingRunner == null) {
      LOG.warn("YarnClusterClient.getApplicationStatus() has been called on an uninitialized cluster." +
          "The system might be in an erroneous state");
    }
    ApplicationReport lastReport = pollingRunner.getLastReport();
{code}
If pollingRunner is null, NPE would result from the getLastReport() call.



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