Skip to content

Commit

Permalink
nit
Browse files Browse the repository at this point in the history
  • Loading branch information
badrishc committed Mar 8, 2025
1 parent 3e8c2c7 commit 576f92d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion libs/server/StoreWrapper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -870,7 +870,8 @@ private async Task InitiateCheckpoint(bool full, CheckpointType checkpointType,
if (serverOptions.EnableCluster && clusterProvider.IsPrimary())
{
EnqueueCommit(AofEntryType.MainStoreCheckpointEndCommit, store.CurrentVersion);
EnqueueCommit(AofEntryType.ObjectStoreCheckpointEndCommit, store.CurrentVersion);
if (objectStore != null)
EnqueueCommit(AofEntryType.ObjectStoreCheckpointEndCommit, objectStore.CurrentVersion);
}

// If cluster is enabled the replication manager is responsible for truncating AOF
Expand Down

0 comments on commit 576f92d

Please sign in to comment.