Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/JasperFx.Events/Daemon/HighWater/HighWaterAgent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ private async Task markProgressAsync(HighWaterStatistics statistics, TimeSpan de
// don't bother sending updates if the current position is 0
if (statistics.CurrentMark == 0 || statistics.CurrentMark == _tracker.HighWaterMark)
{
if (status == HighWaterStatus.CaughtUp)
if (status != HighWaterStatus.Stale)
{
// Update the current stats if the status is not stale
// This ensures the current stats timestamp is up-to-date, and not just set to the time of the last changed
Expand Down
Loading