Canbin Zheng created FLINK-16546: ------------------------------------ Summary: Fix logging bug in YarnClusterDescriptor#startAppMaster Key: FLINK-16546 URL: https://issues.apache.org/jira/browse/FLINK-16546 Project: Flink Issue Type: Improvement Components: Deployment / YARN Reporter: Canbin Zheng Fix For: 1.11.0
It's a minor fixup of the warning in case of tmpJobGraphFile deletion failure. From {code:java} LOG.warn("Fail to delete temporary file {}.", tmpConfigurationFile.toPath()); {code} to {code:java} LOG.warn("Fail to delete temporary file {}.", tmpJobGraphFile.toPath()); {code} [https://github.com/apache/flink/blob/master/flink-yarn/src/main/java/org/apache/flink/yarn/YarnClusterDescriptor.java#L854] -- This message was sent by Atlassian Jira (v8.3.4#803005)