Skip to content

Commit

Permalink
RavenDB-22849 - cx cleaning fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lastav5 committed Feb 23, 2025
1 parent 2c9933e commit 34f0446
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Raven.Server/ServerWide/Maintenance/ClusterObserver.cs
Original file line number Diff line number Diff line change
Expand Up @@ -616,7 +616,8 @@ private CompareExchangeTombstonesCleanupState GetMaxCompareExchangeTombstonesEta
if (clusterStatus == null)
{
// existing backup hasn't run yet for the first time, we don't want to delete anything until we have a first status
return 0;
maxEtag = 0;
return CompareExchangeTombstonesCleanupState.NoMoreTombstones;
}

continue;
Expand Down

0 comments on commit 34f0446

Please sign in to comment.