[MINOR] Correcting few WARN log lines in DistributedHerder#handleRebalance (#13939)

Reviewers: Chris Egerton <chrise@aiven.io>
This commit is contained in:
vamossagar12 2023-06-30 22:09:37 +05:30 committed by GitHub
parent 43574beb97
commit 96e59d7bfd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1660,7 +1660,7 @@ public class DistributedHerder extends AbstractHerder implements Runnable {
log.warn("Join group completed, but assignment failed and we are the leader. Reading to end of config and retrying."); log.warn("Join group completed, but assignment failed and we are the leader. Reading to end of config and retrying.");
needsReadToEnd = true; needsReadToEnd = true;
} else if (configState.offset() < assignment.offset()) { } else if (configState.offset() < assignment.offset()) {
log.warn("Join group completed, but assignment failed and we lagging. Reading to end of config and retrying."); log.warn("Join group completed, but assignment failed and we are lagging. Reading to end of config and retrying.");
needsReadToEnd = true; needsReadToEnd = true;
} else { } else {
log.warn("Join group completed, but assignment failed. We were up to date, so just retrying."); log.warn("Join group completed, but assignment failed. We were up to date, so just retrying.");