sanpwc commented on code in PR #6344: URL: https://github.com/apache/ignite-3/pull/6344#discussion_r2263222494
########## modules/raft/src/main/java/org/apache/ignite/raft/jraft/rpc/impl/cli/GetLeaderRequestProcessor.java: ########## @@ -16,23 +16,21 @@ */ package org.apache.ignite.raft.jraft.rpc.impl.cli; -import java.util.ArrayList; -import java.util.List; +import static java.util.concurrent.CompletableFuture.runAsync; import java.util.concurrent.Executor; import org.apache.ignite.raft.jraft.RaftMessagesFactory; -import org.apache.ignite.raft.jraft.Node; import org.apache.ignite.raft.jraft.Status; -import org.apache.ignite.raft.jraft.entity.PeerId; -import org.apache.ignite.raft.jraft.error.RaftError; import org.apache.ignite.raft.jraft.rpc.CliRequests.GetLeaderRequest; import org.apache.ignite.raft.jraft.rpc.Message; -import org.apache.ignite.raft.jraft.rpc.RaftRpcFactory; +import org.apache.ignite.raft.jraft.rpc.RaftServerService; import org.apache.ignite.raft.jraft.rpc.RpcRequestClosure; +import org.apache.ignite.raft.jraft.rpc.RpcResponseClosureAdapter; +import org.apache.ignite.raft.jraft.rpc.impl.core.NodeRequestProcessor; /** * Process get leader request. */ -public class GetLeaderRequestProcessor extends BaseCliRequestProcessor<GetLeaderRequest> { Review Comment: Obviously we now have two GetLeaderRequests: one client based and one internal. Same as in my other comment, despite the fact that architecturally it's bad design, for the purpose of simplicity let's stick with your proposal. -- 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: notifications-unsubscr...@ignite.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org