Github user tillrohrmann commented on a diff in the pull request:
https://github.com/apache/flink/pull/4728#discussion_r141389893
--- Diff:
flink-runtime/src/main/java/org/apache/flink/runtime/rest/handler/legacy/JobConfigHandler.java
---
@@ -42,7 +42,7 @@
private static final String JOB_CONFIG_REST_PATH =
"/jobs/:jobid/config";
- public JobConfigHandler(ExecutionGraphHolder executionGraphHolder,
Executor executor) {
+ public JobConfigHandler(ExecutionGraphCache executionGraphHolder,
Executor executor) {
--- End diff --
Indeed. Will change it.
---