cmccabe commented on code in PR #16774:
URL: https://github.com/apache/kafka/pull/16774#discussion_r1707603716


##########
clients/src/main/java/org/apache/kafka/clients/admin/KafkaAdminClient.java:
##########
@@ -4711,6 +4714,8 @@ public RemoveRaftVoterResult removeRaftVoter(
             RemoveRaftVoterRequest.Builder createRequest(int timeoutMs) {
                 return new RemoveRaftVoterRequest.Builder(
                     new RemoveRaftVoterRequestData().
+                        setClusterId(options.clusterId().isPresent() ?
+                            options.clusterId().get() : null).

Review Comment:
   ok



##########
clients/src/main/java/org/apache/kafka/clients/admin/KafkaAdminClient.java:
##########
@@ -4667,6 +4667,9 @@ AddRaftVoterRequest.Builder createRequest(int timeoutMs) {
                         setPort(endpoint.port())));
                 return new AddRaftVoterRequest.Builder(
                    new AddRaftVoterRequestData().
+                       setClusterId(options.clusterId().isPresent() ?
+                           options.clusterId().get() : null).

Review Comment:
   ok



-- 
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]

Reply via email to