Skip to content

Commit

Permalink
improve text in error message
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianburckhardt committed Sep 30, 2024
1 parent 38ee164 commit ba4156e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ internal void ValidateObjectVersion(FasterKV.Value val, TrackedObjectKey key)
if (val.Version != versionOfObject)
{
var info = this.GetObjectInfo(key);
this.Fail($"incorrect version: model=v{val.Version} actual=v{versionOfObject} obj={val.Val} cacheEvents={info.PrintCacheEvents()}");
this.Fail($"incorrect version: field=v{val.Version} object=v{versionOfObject} obj={val.Val} cacheEvents={info.PrintCacheEvents()}");
}
}

Expand Down

0 comments on commit ba4156e

Please sign in to comment.