jeffkbkim commented on code in PR #14849: URL: https://github.com/apache/kafka/pull/14849#discussion_r1409851471
########## group-coordinator/src/main/java/org/apache/kafka/coordinator/group/runtime/CoordinatorShard.java: ########## @@ -47,4 +47,11 @@ default void onNewMetadataImage(MetadataImage newImage, MetadataDelta delta) {} * any post unloading operations. */ default void onUnloaded() {} + + /** + * Replay a record to update the state machine. + * + * @param record The record to replay. + */ + default void replay(U record) throws RuntimeException {} Review Comment: this doesn't work because CoordinatorShard no longer longer extends CoordinatorPlayback so it doesn't have a replay() method anymore -- 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: jira-unsubscr...@kafka.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org