wsry commented on code in PR #21217: URL: https://github.com/apache/flink/pull/21217#discussion_r1036837155
########## flink-runtime/src/main/java/org/apache/flink/runtime/util/EnvironmentInformation.java: ########## @@ -469,7 +469,9 @@ public static void logEnvironmentInfo( } } - log.info(" Classpath: " + System.getProperty("java.class.path")); + String classPath = System.getProperty("java.class.path"); + + log.info(" Classpath: " + classPath.replace("/*", "/ *")); Review Comment: Any update? If there is no simple way to solve the issue at the UI side, let's not do that. For this single case, I think replacing "/*" with "/ *" is not a good solution because it changes the path itself. I am not sure if surrounding the classpath string with '"' solves the problem. If so, I think that will be a better solution. What do you think? -- 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