bgeng777 commented on code in PR #27164:
URL: https://github.com/apache/flink/pull/27164#discussion_r2472639830


##########
flink-python/pyflink/datastream/async_data_stream.py:
##########
@@ -47,14 +48,39 @@ def unordered_wait(
         :param output_type: The output data type.
         :return: The transformed DataStream.
         """
-        AsyncDataStream._validate(data_stream, async_function)
+        return AsyncDataStream.unordered_wait_with_retry(
+            data_stream, async_function, timeout, 
async_retry_strategies.NO_RETRY_STRATEGY,
+            capacity, output_type)
+
+    @staticmethod
+    def unordered_wait_with_retry(

Review Comment:
   Java's AsyncWaitOperator has only 1 constructor with asyncRetryStrategy as 
an parameter; so here you mean 
org.apache.flink.streaming.api.operators.async.AsyncWaitOperatorFactory#AsyncWaitOperatorFactory
 ? 
   



-- 
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