Skip to content

Commit

Permalink
feat: Fix previous feature build
Browse files Browse the repository at this point in the history
  • Loading branch information
leksyCode committed Aug 10, 2022
1 parent c88b07a commit 612ac4e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public async Task SaveAggregateCommitsAsync(IEnumerable<EventStream> eventStream
{
foreach (AggregateCommit arCommit in stream.Commits)
{
await progressTracker.CompleteActionWithProgressSignalAsync(() => index.IndexAsync(arCommit, Data.Version)).ConfigureAwait(false);
await progressTracker.CompleteActionWithProgressSignalAsync(() => index.IndexAsync(arCommit, Data.Version), eventType).ConfigureAwait(false);
}
}
catch (Exception ex) when (logger.WarnException(ex, () => $"{stream} was skipped when rebuilding {Data.Version.ProjectionName}.")) { }
Expand Down

0 comments on commit 612ac4e

Please sign in to comment.