engine: resources: Make error not ambiguous

The same text exists elsewhere.
This commit is contained in:
James Shubin
2025-05-25 01:42:41 -04:00
parent 654e958d3f
commit f73127ec23

View File

@@ -296,7 +296,7 @@ func (obj *KVRes) CheckApply(ctx context.Context, apply bool) (bool, error) {
value, exists, err := obj.kvGet(ctx, obj.getKey())
if err != nil {
return false, errwrap.Wrapf(err, "error during get")
return false, errwrap.Wrapf(err, "error during kv get")
}
if exists && obj.Value != nil {
if value == *obj.Value {