Skip to content

Commit

Permalink
Fix test break
Browse files Browse the repository at this point in the history
  • Loading branch information
Hawxy committed Jul 9, 2024
1 parent 3aa7aa9 commit 718c26d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Marten/Events/Daemon/Internals/EventPage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public EventPage(long floor)
public long Floor { get; }
public long Ceiling { get; private set; }

public void CalculateCeiling(int batchSize, long highWaterMark, int skippedEvents)
public void CalculateCeiling(int batchSize, long highWaterMark, int skippedEvents = 0)
{
Ceiling = (Count + skippedEvents) == batchSize
? this.Last().Sequence
Expand Down

0 comments on commit 718c26d

Please sign in to comment.