DaveTeng0 commented on code in PR #1098:
URL: https://github.com/apache/ratis/pull/1098#discussion_r1635388784


##########
ratis-shell/src/main/java/org/apache/ratis/shell/cli/sh/command/AbstractRatisCommand.java:
##########
@@ -168,14 +148,8 @@ protected RaftPeerProto getLeader(RoleInfoProto roleInfo) {
   }
 
   protected void processReply(RaftClientReply reply, Supplier<String> 
messageSupplier) throws IOException {
-    if (reply == null || !reply.isSuccess()) {
-      final RaftException e = Optional.ofNullable(reply)
-          .map(RaftClientReply::getException)
-          .orElseGet(() -> new RaftException("Reply: " + reply));
-      final String message = messageSupplier.get();
-      printf("%s. Error: %s%n", message, e);
-      throw new IOException(message, e);
-    }
+    RaftUtils.processReply(reply,
+        getPrintStream()::println, messageSupplier.get());

Review Comment:
   yeah sure!



-- 
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: issues-unsubscr...@ratis.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to