summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJohn Estabrook <jestabro@vyos.io>2025-04-03 10:19:47 -0500
committerGitHub <noreply@github.com>2025-04-03 10:19:47 -0500
commit0fb5e2f781725196ae010cf64e4d185a8f5ce721 (patch)
tree8c9d9d1b48578e61edbd3fc45195d92e70320714 /src
parentaedecf6fa96509ef59fd2e1f607a8a13c18d214b (diff)
parentf2184939beb28fbe2ae87919581bf4df21798438 (diff)
downloadvyconf-0fb5e2f781725196ae010cf64e4d185a8f5ce721.tar.gz
vyconf-0fb5e2f781725196ae010cf64e4d185a8f5ce721.zip
Merge pull request #18 from jestabro/set-tag-and-leafHEADmaster
T7292: update tag/leaf data on set paths
Diffstat (limited to 'src')
-rw-r--r--src/session.ml6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/session.ml b/src/session.ml
index 567f999..602ab14 100644
--- a/src/session.ml
+++ b/src/session.ml
@@ -78,7 +78,11 @@ let set w s path =
let refpath = RT.refpath w.reference_tree path in
let value_behaviour = if RT.is_multi w.reference_tree refpath then CT.AddValue else CT.ReplaceValue in
let op = CfgSet (path, value, value_behaviour) in
- let config = apply_cfg_op op s.proposed_config in
+ let config =
+ apply_cfg_op op s.proposed_config |>
+ (fun c -> RT.set_tag_data w.reference_tree c path) |>
+ (fun c -> RT.set_leaf_data w.reference_tree c path)
+ in
{s with proposed_config=config; changeset=(op :: s.changeset)}
let delete w s path =