rkhachatryan commented on code in PR #21981: URL: https://github.com/apache/flink/pull/21981#discussion_r1116358878
########## flink-runtime/src/main/java/org/apache/flink/runtime/scheduler/adaptive/StateTransitions.java: ########## @@ -163,7 +165,12 @@ CompletableFuture<String> goToStopWithSavepoint( /** Interface covering transition to the {@link WaitingForResources} state. */ interface ToWaitingForResources extends StateTransitions { - /** Transitions into the {@link WaitingForResources} state. */ + /** + * Transitions into the {@link WaitingForResources} state without {@link ExecutionGraph} + * (e.g. after creation). + */ void goToWaitingForResources(); + /** Transitions into the {@link WaitingForResources} state (e.g. after restarting). */ + void goToWaitingForResources(ExecutionGraph executionGraph); Review Comment: Removed in 3760a182422db9a7b7cabf420f170346617455fa. -- 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