szetszwo commented on code in PR #1166:
URL: https://github.com/apache/ratis/pull/1166#discussion_r1797167915


##########
ratis-server/src/main/java/org/apache/ratis/server/impl/RaftServerImpl.java:
##########
@@ -401,6 +402,7 @@ boolean start() throws IOException {
 
     jmxAdapter.registerMBean();
     state.start();
+    CodeInjectionForTesting.execute(START_COMPLETE, getId(), null, role);

Review Comment:
   Let's add a log message:
   ```java
       if (startComplete.compareAndSet(false, true)) {
         LOG.info("{}: Successfully started.", getMemberId());
       }
   ```



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