From 287504cfa8aa8cf6d1dc6bd51a68c6e661a77d62 Mon Sep 17 00:00:00 2001 From: James Shubin Date: Thu, 15 May 2025 01:46:03 -0400 Subject: [PATCH] engine: resources: Add missing struct tags to kv --- engine/resources/kv.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/resources/kv.go b/engine/resources/kv.go index 802586fc..6f6e0a0c 100644 --- a/engine/resources/kv.go +++ b/engine/resources/kv.go @@ -94,7 +94,7 @@ type KVRes struct { // functions like `getval`, require this to be false, since they're // pulling values directly out of the same namespace that is shared by // all nodes. - Mapped bool + Mapped bool `lang:"mapped" yaml:"mapped"` // SkipLessThan causes the value to be updated as long as it is greater. SkipLessThan bool `lang:"skiplessthan" yaml:"skiplessthan"`