JunRuiLee commented on code in PR #24025: URL: https://github.com/apache/flink/pull/24025#discussion_r1442718242
########## flink-core/src/main/java/org/apache/flink/api/common/ExecutionConfig.java: ########## @@ -1201,6 +1212,9 @@ public void configure(ReadableConfig configuration, ClassLoader classLoader) { .getOptional(ExecutionOptions.SNAPSHOT_COMPRESSION) .ifPresent(this::setUseSnapshotCompression); RestartStrategies.fromConfiguration(configuration).ifPresent(this::setRestartStrategy); + configuration + .getOptional(RestartStrategyOptions.RESTART_STRATEGY) + .ifPresent(s -> this.setRestartStrategy(configuration)); Review Comment: Yes, you're right. I misunderstood the code when I was reviewing it; sorry about that. I've fixed the error now. -- 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