nizhikov commented on code in PR #16106:
URL: https://github.com/apache/kafka/pull/16106#discussion_r1629371126
##########
clients/src/main/java/org/apache/kafka/clients/admin/KafkaAdminClient.java:
##########
@@ -4424,12 +4427,21 @@ private QuorumInfo createQuorumResult(final
DescribeQuorumResponseData.Partition
.map(this::translateReplicaState)
.collect(Collectors.toList());
+ List<QuorumInfo.Node> nodes = nodeCollection.stream().map(n ->
{
+ List<Endpoint> endpoints = n.listeners().stream()
+ .map(l -> new Endpoint(l.name(),
SecurityProtocol.forId(l.securityProtocol()), l.host(), l.port()))
Review Comment:
Replaced with the `RaftVoterEndpoint`
--
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]