ebyhr opened a new pull request, #14648: URL: https://github.com/apache/iceberg/pull/14648
The constructor with 6 parameters is deprecated. Relates to [CommittableSummary](https://github.com/apache/flink/blob/master/flink-runtime/src/main/java/org/apache/flink/streaming/api/connector/sink2/CommittableSummary.java): ```java public CommittableSummary( int subtaskId, int numberOfSubtasks, long checkpointId, int numberOfCommittables, int numberOfFailedCommittables) { this( subtaskId, numberOfSubtasks, checkpointId, numberOfCommittables, 0, numberOfFailedCommittables); } @Deprecated public CommittableSummary( int subtaskId, int numberOfSubtasks, long checkpointId, int numberOfCommittables, int numberOfPendingCommittables, int numberOfFailedCommittables) { this.subtaskId = subtaskId; this.numberOfSubtasks = numberOfSubtasks; this.checkpointId = checkpointId; this.numberOfCommittables = numberOfCommittables; this.numberOfPendingCommittables = numberOfPendingCommittables; this.numberOfFailedCommittables = numberOfFailedCommittables; } ... @Deprecated public int getNumberOfPendingCommittables() { return 0; } ``` -- 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]
