masonyc commented on code in PR #16563:
URL: https://github.com/apache/kafka/pull/16563#discussion_r1675023567


##########
raft/src/test/java/org/apache/kafka/raft/KafkaRaftClientTest.java:
##########
@@ -281,15 +281,20 @@ public void testGrantVotesWhenShuttingDown(boolean 
withKip853Rpc) throws Excepti
         context.client.poll();
 
         // We will first transition to unattached and then grant vote and then 
transition to voted
-        assertTrue(context.client.quorum().isVoted());
+        assertTrue(
+            context.client.quorum().isVoted(),
+            "Local Id: " + localId +
+                " Remote Id: " + remoteId +
+                " Quorum local Id: " + 
context.client.quorum().localIdOrSentinel()
+                + " Quorum leader Id: " + 
context.client.quorum().leaderIdOrSentinel());

Review Comment:
   Updated



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

Reply via email to