Github user tillrohrmann commented on a diff in the pull request:
https://github.com/apache/flink/pull/5339#discussion_r163517247
--- Diff:
flink-core/src/main/java/org/apache/flink/configuration/RestOptions.java ---
@@ -32,13 +32,11 @@
* The address that the server binds itself to / the client connects to.
*/
public static final ConfigOption<String> REST_ADDRESS =
- key("rest.address")
- .defaultValue("localhost");
+ key("rest.address").defaultValue("localhost");
/**
* The port that the server listens on / the client connects to.
*/
public static final ConfigOption<Integer> REST_PORT =
- key("rest.port")
- .defaultValue(9067);
+ key("rest.port").defaultValue(9065);
--- End diff --
This does not change the QS server port but the Rest server endpoint port.
---