jiangxin369 commented on code in PR #229: URL: https://github.com/apache/flink-ml/pull/229#discussion_r1161619708
########## flink-ml-iteration/src/main/java/org/apache/flink/iteration/operator/OperatorUtils.java: ########## @@ -104,6 +107,33 @@ public static StreamConfig createWrappedOperatorConfig( } } + StreamConfig.InputConfig[] inputs = wrapperConfig.getInputs(cl); + for (int i = 0; i < inputs.length; ++i) { + if (inputs[i] instanceof NetworkInputConfig) { + TypeSerializer<?> typeSerializerIn = + ((NetworkInputConfig) inputs[i]).getTypeSerializer(); + if (typeSerializerIn instanceof IterationRecordSerializer) { Review Comment: Yes, you're right. I removed the `if ... instanceOf ...` check. And seems that we did not modify the `StateKeySerializer` at all, so I also removed this part. -- 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