X-czh commented on code in PR #25877:
URL: https://github.com/apache/flink/pull/25877#discussion_r1901460309


##########
flink-core/src/main/java/org/apache/flink/configuration/CoreOptions.java:
##########
@@ -225,6 +225,17 @@ public static String[] mergeListsToArray(List<String> 
base, List<String> append)
     //  process parameters
     // ------------------------------------------------------------------------
 
+    public static final ConfigOption<String> FLINK_JAVA_HOME =
+            ConfigOptions.key("env.java.home")
+                    .stringType()
+                    .defaultValue("")
+                    .withDescription(
+                            Description.builder()
+                                    .text(
+                                            "Location where Java is installed. 
If not specified,"
+                                                    + " Flink will use your 
default Java installation.")
+                                    .build());
+

Review Comment:
   Thanks, this makes the option semantics clearer.



-- 
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