Zakelly commented on code in PR #26419:
URL: https://github.com/apache/flink/pull/26419#discussion_r2035219158
##########
flink-runtime/src/main/java/org/apache/flink/streaming/api/datastream/KeyedStream.java:
##########
@@ -358,9 +359,10 @@ public <R> SingleOutputStreamOperator<R> process(
@Internal
public <R> SingleOutputStreamOperator<R> process(
KeyedProcessFunction<KEY, T, R> keyedProcessFunction,
TypeInformation<R> outputType) {
-
- KeyedProcessOperator<KEY, T, R> operator =
- new KeyedProcessOperator<>(clean(keyedProcessFunction));
+ OneInputStreamOperator operator =
Review Comment:
```suggestion
OneInputStreamOperator<T, R> operator =
```
Maybe do similar for `flatMap` BTW
--
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]