dmvk commented on code in PR #21981: URL: https://github.com/apache/flink/pull/21981#discussion_r1117232018
########## flink-runtime/src/main/java/org/apache/flink/runtime/scheduler/adaptive/WaitingForResources.java: ########## @@ -65,17 +69,18 @@ class WaitingForResources implements State, ResourceConsumer { desiredResources, initialResourceAllocationTimeout, resourceStabilizationTimeout, - SystemClock.getInstance()); + SystemClock.getInstance(), + null); } - @VisibleForTesting WaitingForResources( Context context, Logger log, ResourceCounter desiredResources, Duration initialResourceAllocationTimeout, Duration resourceStabilizationTimeout, - Clock clock) { + Clock clock, + ExecutionGraph previousExecutionGraph) { Review Comment: ```suggestion @Nullable ExecutionGraph previousExecutionGraph) { ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@flink.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org