This is an automated email from the ASF dual-hosted git repository.

sewen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git

commit b66d16f475c6a83c527205c673e308e72ee39adc
Author: Stephan Ewen <se...@apache.org>
AuthorDate: Fri May 29 11:12:33 2020 +0200

    [hotfix][runtime] Fox log message for web.log.file to only pring config key 
and not deprecated keys
---
 .../main/java/org/apache/flink/runtime/webmonitor/WebMonitorUtils.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/flink-runtime/src/main/java/org/apache/flink/runtime/webmonitor/WebMonitorUtils.java
 
b/flink-runtime/src/main/java/org/apache/flink/runtime/webmonitor/WebMonitorUtils.java
index cbf96b5..436d3a0 100644
--- 
a/flink-runtime/src/main/java/org/apache/flink/runtime/webmonitor/WebMonitorUtils.java
+++ 
b/flink-runtime/src/main/java/org/apache/flink/runtime/webmonitor/WebMonitorUtils.java
@@ -96,7 +96,7 @@ public final class WebMonitorUtils {
                        if (logFilePath == null || logFilePath.length() < 4) {
                                LOG.warn("JobManager log files are unavailable 
in the web dashboard. " +
                                        "Log file location not found in 
environment variable '{}' or configuration key '{}'.",
-                                       logEnv, WebOptions.LOG_PATH);
+                                       logEnv, WebOptions.LOG_PATH.key());
                                return new LogFileLocation(null, null, null);
                        }
 

Reply via email to