Skip to content

Commit

Permalink
fix(migrator): don't insert twice in processeids when retrying #2
Browse files Browse the repository at this point in the history
  • Loading branch information
ArneD committed Aug 29, 2023
1 parent 39e56aa commit 8acffe5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public async Task ProcessAsync(CancellationToken ct)

try
{
var processedPageItems = await ProcessStreams(new (int, string)[] { (retryProcessedId.processedId, retryProcessedId.aggregateId) }, ct);
var processedPageItems = await ProcessStreams(new (int, string)[] { (retryProcessedId.processedId, retryProcessedId.aggregateId) }, ct, true);

await _processedIdsTable.CompleteRetryPageAsync(processedPageItems);
}
Expand Down

0 comments on commit 8acffe5

Please sign in to comment.