WencongLiu commented on code in PR #22341: URL: https://github.com/apache/flink/pull/22341#discussion_r1283948678
########## flink-runtime/src/test/java/org/apache/flink/runtime/testutils/TestingJobResultStore.java: ########## @@ -116,58 +111,53 @@ public static TestingJobResultStore.Builder builder() { /** {@code Builder} for instantiating {@code TestingJobResultStore} instances. */ public static class Builder { - private ThrowingConsumer<JobResultEntry, ? extends IOException> createDirtyResultConsumer = - ignored -> {}; - private ThrowingConsumer<JobID, ? extends IOException> markResultAsCleanConsumer = - ignored -> {}; + private Function<JobResultEntry, CompletableFuture<Void>> createDirtyResultConsumer = + jobResultEntry -> CompletableFuture.completedFuture(null); Review Comment: Fixed. -- 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