aljoscha commented on a change in pull request #13828: URL: https://github.com/apache/flink/pull/13828#discussion_r514195353
########## File path: flink-streaming-java/src/main/java/org/apache/flink/streaming/runtime/translators/SourceTransformationTranslator.java ########## @@ -36,26 +38,29 @@ * @param <OUT> The type of the elements that this source produces. */ @Internal -public class SourceTransformationTranslator<OUT> - extends SimpleTransformationTranslator<OUT, SourceTransformation<OUT>> { +public class SourceTransformationTranslator<OUT, SplitT extends SourceSplit, EnumChkT> + extends SimpleTransformationTranslator<OUT, SourceTransformation<OUT, SplitT, EnumChkT>> { @Override protected Collection<Integer> translateForBatchInternal( - final SourceTransformation<OUT> transformation, + final SourceTransformation<OUT, SplitT, EnumChkT> transformation, final Context context) { - return translateInternal(transformation, context); + + return translateInternal(transformation, context, false /* emit progressive watermarks */); Review comment: 👌 ---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: us...@infra.apache.org