Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
badrishc committed Mar 8, 2025
1 parent 576f92d commit 76430c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/server/StoreWrapper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -877,7 +877,7 @@ private async Task InitiateCheckpoint(bool full, CheckpointType checkpointType,
// If cluster is enabled the replication manager is responsible for truncating AOF
if (serverOptions.EnableCluster && serverOptions.EnableAOF)
{
clusterProvider.SafeTruncateAOF(objectStore == null ? StoreType.Main : StoreType.All, full, CheckpointCoveredAofAddress, checkpointResult.token, checkpointResult.token);
clusterProvider.SafeTruncateAOF(StoreType.All, full, CheckpointCoveredAofAddress, checkpointResult.token, checkpointResult.token);
}
else
{
Expand Down

0 comments on commit 76430c1

Please sign in to comment.