KarmaGYZ commented on code in PR #23368:
URL: https://github.com/apache/flink/pull/23368#discussion_r1320969792


##########
flink-streaming-java/src/main/java/org/apache/flink/streaming/api/operators/collect/CollectResultFetcher.java:
##########
@@ -67,20 +66,23 @@ public class CollectResultFetcher<T> {
     public CollectResultFetcher(
             AbstractCollectResultBuffer<T> buffer,
             CompletableFuture<OperatorID> operatorIdFuture,
-            String accumulatorName) {
-        this(buffer, operatorIdFuture, accumulatorName, DEFAULT_RETRY_MILLIS);
+            String accumulatorName,
+            long resultFetchTimeout) {
+        this(buffer, operatorIdFuture, accumulatorName, DEFAULT_RETRY_MILLIS, 
resultFetchTimeout);

Review Comment:
   I'm lean to leave it in the `CollectResultFetcher` because I consider it as 
an internal mechanism of `CollectResultFetcher`. 



-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to