Github user uce commented on a diff in the pull request: https://github.com/apache/flink/pull/2680#discussion_r86392650 --- Diff: flink-core/src/main/java/org/apache/flink/configuration/ConfigConstants.java --- @@ -1193,7 +1195,12 @@ // ------------------------- JobManager Web Frontend ---------------------- - + + /** The config key for the address of the JobManager web frontend. */ + public static final ConfigOption<String> DEFAULT_JOB_MANAGER_WEB_FRONTEND_ADDRESS = + key("jobmanager.web.address") + .defaultValue("0.0.0.0"); --- End diff -- I'm wondering whether it's better to have `null` as default and simply let InetAddress pick the address. I don't know if it makes a difference at the end.
--- 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 infrastruct...@apache.org or file a JIRA ticket with INFRA. ---