chirag-wadhwa5 commented on code in PR #18696: URL: https://github.com/apache/kafka/pull/18696#discussion_r1929050025
########## core/src/main/java/kafka/server/share/SharePartition.java: ########## @@ -462,6 +468,10 @@ public CompletableFuture<Void> maybeInitialize() { // in the cached state are not missed findNextFetchOffset.set(true); endOffset = cachedState.lastEntry().getValue().lastOffset(); + // initialReadGapOffset is not required, if there are no gaps in the read state response + if (isGapPresentInCachedState()) { Review Comment: Thanks for the review. Made this change in the recent commit -- 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