wsry commented on code in PR #21217:
URL: https://github.com/apache/flink/pull/21217#discussion_r1012572311


##########
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:
   The fix only works for this single case. Do we have a more general way to 
fix it? For example, change the way that the web UI displays '/*'?



-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to