diff --git a/src/DurableTask.Netherite/StorageProviders/Faster/FasterKV.cs b/src/DurableTask.Netherite/StorageProviders/Faster/FasterKV.cs index 5ca97c43..7acc3af3 100644 --- a/src/DurableTask.Netherite/StorageProviders/Faster/FasterKV.cs +++ b/src/DurableTask.Netherite/StorageProviders/Faster/FasterKV.cs @@ -76,7 +76,7 @@ public override void InitMainSession() { await this.blobManager.FindCheckpointsAsync(); this.blobManager.TraceHelper.FasterProgress($"Recovering FasterKV"); - await this.fht.RecoverAsync(numPagesToPreload: 0); + await this.fht.RecoverAsync(); this.mainSession = this.CreateASession(); return (this.blobManager.CheckpointInfo.CommitLogPosition, this.blobManager.CheckpointInfo.InputQueuePosition); }