kevin-wu24 commented on code in PR #19589: URL: https://github.com/apache/kafka/pull/19589#discussion_r2070648299
########## raft/src/main/java/org/apache/kafka/raft/KafkaRaftClient.java: ########## @@ -3328,6 +3405,23 @@ private UpdateRaftVoterRequestData buildUpdateVoterRequest() { ); } + private AddRaftVoterRequestData buildAddVoterRequest() { + return RaftUtil.addVoterRequest( + clusterId, + // TODO: What to set the AddVoterRequest timeout to? + 10000, Review Comment: What's the request timeout? I can't find default timeout for this since it's an admin client request up until now. -- 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