HOTFIX: re-add line resetting rebalance schedule missing from hotfix

This commit is contained in:
A. Sophie Blee-Goldman 2022-11-18 23:21:16 -08:00
parent 5ee5c6f552
commit 5302e060fc
1 changed files with 1 additions and 0 deletions

View File

@ -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. " +