davidradl commented on code in PR #25660: URL: https://github.com/apache/flink/pull/25660#discussion_r1853945431
########## flink-streaming-java/src/main/java/org/apache/flink/streaming/runtime/translators/SinkTransformationTranslator.java: ########## @@ -188,10 +195,19 @@ private void expand() { } } + private <R> void repeatUntilConverged(Supplier<R> producer) { + R lastResult = producer.get(); + R nextResult; + while (!lastResult.equals(nextResult = producer.get())) { Review Comment: can we get nulls here? -- 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