Jam804 commented on code in PR #25995: URL: https://github.com/apache/flink/pull/25995#discussion_r1918309922
########## flink-kubernetes/src/main/java/org/apache/flink/kubernetes/kubeclient/decorators/FlinkConfMountDecorator.java: ########## @@ -179,15 +178,14 @@ String getFlinkConfData(List<String> confData) throws IOException { private List<File> getLocalLogConfFiles() { final String confDir = kubernetesComponentConf.getConfigDirectory(); - final File logbackFile = new File(confDir, CONFIG_FILE_LOGBACK_NAME); - final File log4jFile = new File(confDir, CONFIG_FILE_LOG4J_NAME); List<File> localLogConfFiles = new ArrayList<>(); - if (logbackFile.exists()) { - localLogConfFiles.add(logbackFile); - } - if (log4jFile.exists()) { - localLogConfFiles.add(log4jFile); + + for (String fileName : CONFIG_FILE_NAME_LIST) { Review Comment: Thank you for your suggestions. I have made improvements. Please review. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@flink.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org