Skip to content

Commit

Permalink
Merge branch 'wait-for-standby-recovery' into feature-TwmUpgrades
Browse files Browse the repository at this point in the history
  • Loading branch information
vmirz committed Dec 27, 2023
2 parents 80ca26f + c9bb41c commit 2c75b0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion faust/tables/recovery.py
Original file line number Diff line number Diff line change
Expand Up @@ -876,7 +876,7 @@ def standby_stats(self) -> RecoveryStatsMapping:
offsets[tp],
highwater - offsets[tp])
for tp, highwater in self.standby_highwaters.items()
if offsets[tp] is not None and highwater - offsets[tp] != 0
if offsets[tp] is not None and highwater - offsets[tp] > 0

}

Expand Down

0 comments on commit 2c75b0f

Please sign in to comment.