Skip to content

Commit

Permalink
Merge fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Marko Sego committed Feb 2, 2024
1 parent a5b7241 commit 01e6e55
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Tacta.EventStore.Test/Projector/ResilienceTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,11 @@ public async Task WhileRebuildInProgress_ProcessShouldWait()

public class VerySlowUserProjection : Projection
{
public List<int> AppliedSequences { get; }
public List<long> AppliedSequences { get; }

public VerySlowUserProjection(IProjectionRepository projectionRepository) : base(projectionRepository)
{
AppliedSequences = new List<int>();
AppliedSequences = new List<long>();
}

public async Task On(UserRegistered @event)
Expand Down
1 change: 0 additions & 1 deletion Tacta.EventStore/Tacta.EventStore.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
<Version>1.6.2</Version>
<PackageVersion>1.6.2</PackageVersion>
<Title>Tacta EventStore Library</Title>
<PackageReleaseNotes>Added support for rebuilding projections</PackageReleaseNotes>
<PackageReleaseNotes>Sequence type changed from int to long</PackageReleaseNotes>
<Configurations>Debug;Release</Configurations>
<Platforms>AnyCPU</Platforms>
Expand Down

0 comments on commit 01e6e55

Please sign in to comment.