Skip to content

Commit cd8e038

Browse files
authored
pass down untilAddress for ReplayAOF (microsoft#1388)
1 parent d2d6944 commit cd8e038

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libs/server/StoreWrapper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -445,7 +445,7 @@ public void ResumeCheckpoints(int dbId = 0)
445445
/// <summary>
446446
/// When replaying AOF we do not want to write AOF records again.
447447
/// </summary>
448-
public long ReplayAOF(long untilAddress = -1) => this.databaseManager.ReplayAOF();
448+
public long ReplayAOF(long untilAddress = -1) => this.databaseManager.ReplayAOF(untilAddress);
449449

450450
/// <summary>
451451
/// Append a checkpoint commit to the AOF

0 commit comments

Comments
 (0)