Skip to content

Commit

Permalink
RavenDB-20325 : handle TimeSeriesDeletedRanges in ShardedBackupProgre…
Browse files Browse the repository at this point in the history
…ss.Fill and ShardedSmugglerProgress.Fill
  • Loading branch information
aviv committed Jul 1, 2024
1 parent 7028c30 commit 989228a
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ public void Fill(IOperationProgress progress, int shardNumber, string nodeTag)
Counters = bp.Counters;
TimeSeries = bp.TimeSeries;
CompareExchangeTombstones = bp.CompareExchangeTombstones;
TimeSeriesDeletedRanges = bp.TimeSeriesDeletedRanges;
}

public override DynamicJsonValue ToJson()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ public void Fill(IOperationProgress progress, int shardNumber, string nodeTag)
Counters = sp.Counters;
TimeSeries = sp.TimeSeries;
CompareExchangeTombstones = sp.CompareExchangeTombstones;
TimeSeriesDeletedRanges = sp.TimeSeriesDeletedRanges;
}

public override DynamicJsonValue ToJson()
Expand Down
3 changes: 0 additions & 3 deletions test/SlowTests/Issues/RavenDB-21050.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using FastTests;
using Raven.Client.Documents;
Expand Down

0 comments on commit 989228a

Please sign in to comment.