AndrewJSchofield commented on code in PR #20771:
URL: https://github.com/apache/kafka/pull/20771#discussion_r2496398081
##########
clients/src/main/java/org/apache/kafka/clients/admin/internals/ListShareGroupOffsetsHandler.java:
##########
@@ -137,7 +137,7 @@ public ApiResult<CoordinatorKey, Map<TopicPartition,
OffsetAndMetadata>> handleR
if (partitionResponse.startOffset() < 0) {
groupOffsetsListing.put(tp, null);
} else {
- groupOffsetsListing.put(tp, new
OffsetAndMetadata(startOffset, leaderEpoch, ""));
+ groupOffsetsListing.put(tp, new
SharePartitionOffsetInfo(startOffset, leaderEpoch, Optional.empty()));
Review Comment:
Yes. Very soon. https://issues.apache.org/jira/browse/KAFKA-19778 for the
tasks we are implementing in parallel.
--
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]