showuon commented on code in PR #16211:
URL: https://github.com/apache/kafka/pull/16211#discussion_r1642365909
##########
raft/src/main/java/org/apache/kafka/raft/LeaderState.java:
##########
@@ -117,9 +117,10 @@ public long timeUntilCheckQuorumExpires(long
currentTimeMs) {
long remainingMs = checkQuorumTimer.remainingMs();
if (remainingMs == 0) {
log.info(
- "Did not receive fetch request from the majority of the voters
within {}ms. Current fetched voters are {}.",
+ "Did not receive fetch request from the majority of the voters
within {}ms. Current fetched voters are {}, and voters are {}",
checkQuorumTimeoutMs,
- fetchedVoters);
+ fetchedVoters,
+ voterStates.keySet());
Review Comment:
OK, will review https://github.com/apache/kafka/pull/16235 later.
--
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]