Github user GJL commented on a diff in the pull request:
https://github.com/apache/flink/pull/5431#discussion_r167606814
--- Diff:
flink-runtime/src/main/java/org/apache/flink/runtime/entrypoint/ClusterEntrypoint.java
---
@@ -63,6 +89,10 @@
*/
public abstract class ClusterEntrypoint implements FatalErrorHandler {
+ public static final ConfigOption<String> EXECUTION_MODE = ConfigOptions
+ .key("cluster.execution-mode")
--- End diff --
Is it the first time that `ConfigOptions` are used for something that the
user should/cannot not configure?
---