stevenzwu commented on code in PR #12527:
URL: https://github.com/apache/iceberg/pull/12527#discussion_r2002394034
##########
flink/v2.0/flink/src/main/java/org/apache/iceberg/flink/sink/IcebergFilesCommitter.java:
##########
@@ -138,6 +141,12 @@ class IcebergFilesCommitter extends
AbstractStreamOperator<Void>
this.spec = spec;
}
+ @Override
+ protected void setup(
+ StreamTask<?, ?> containingTask, StreamConfig config,
Output<StreamRecord<Void>> output) {
+ super.setup(containingTask, config, output);
+ }
+
Review Comment:
you are saying `AbstractStreamOperator` changed the scope of this method
from public to protected. can you share which operator factory still calls this
method?
--
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]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]