mirror of https://github.com/apache/kafka.git
HOTFIX: re-add line resetting rebalance schedule missing from hotfix
This commit is contained in:
parent
5ee5c6f552
commit
5302e060fc
|
@ -592,6 +592,7 @@ public class StreamThread extends Thread {
|
|||
if (!taskManager.isRebalanceInProgress() && nextProbingRebalanceMs.get() < time.milliseconds()) {
|
||||
log.info("Triggering the followup rebalance scheduled for {} ms.", nextProbingRebalanceMs.get());
|
||||
mainConsumer.enforceRebalance("triggered followup rebalance scheduled for " + nextProbingRebalanceMs.get());
|
||||
nextProbingRebalanceMs.set(Long.MAX_VALUE);
|
||||
}
|
||||
} catch (final TaskCorruptedException e) {
|
||||
log.warn("Detected the states of tasks " + e.corruptedTasks() + " are corrupted. " +
|
||||
|
|
Loading…
Reference in New Issue