Samples fixes (#5169)

This commit is contained in:
westey
2026-04-09 08:46:20 +00:00
committed by GitHub
parent 30a2bc3dcb
commit 79afda1a6c
3 changed files with 22 additions and 3 deletions
@@ -168,7 +168,7 @@ public sealed class FileSystemJsonCheckpointStore : JsonCheckpointStore, IDispos
string filePath = Path.Combine(this.Directory.FullName, fileName);
if (!this.CheckpointIndex.Contains(key) ||
!File.Exists(fileName))
!File.Exists(filePath))
{
throw new KeyNotFoundException($"Checkpoint '{key.CheckpointId}' not found in store at '{this.Directory.FullName}'.");
}