Github user tillrohrmann commented on a diff in the pull request:
https://github.com/apache/flink/pull/3391#discussion_r103980334
--- Diff:
flink-core/src/main/java/org/apache/flink/configuration/ConfigConstants.java ---
@@ -1252,8 +1257,8 @@
.noDefaultValue();
/** The config key for the port of the JobManager web frontend.
- * Setting this value to {@code -1} disables the web frontend. */
- public static final int DEFAULT_JOB_MANAGER_WEB_FRONTEND_PORT = 8081;
+ * Setting this value to {@code "-1"} disables the web frontend. */
+ public static final String DEFAULT_JOB_MANAGER_WEB_FRONTEND_PORT =
"8081";
--- End diff --
The right way to do it, is to leave this variable unchanged, mark it
deprecated and introduce a new default value for the job manager web frontend
port which is of type string.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---