mirror of https://github.com/apache/kafka.git
[MINOR] Correcting few WARN log lines in DistributedHerder#handleRebalance (#13939)
Reviewers: Chris Egerton <chrise@aiven.io>
This commit is contained in:
parent
43574beb97
commit
96e59d7bfd
|
@ -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.");
|
||||||
|
|
Loading…
Reference in New Issue