summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Estabrook <jestabro@vyos.io>2025-04-02 15:03:44 -0500
committerJohn Estabrook <jestabro@vyos.io>2025-04-02 23:10:39 -0500
commitf2184939beb28fbe2ae87919581bf4df21798438 (patch)
tree8c9d9d1b48578e61edbd3fc45195d92e70320714
parentaedecf6fa96509ef59fd2e1f607a8a13c18d214b (diff)
downloadvyconf-f2184939beb28fbe2ae87919581bf4df21798438.tar.gz
vyconf-f2184939beb28fbe2ae87919581bf4df21798438.zip
T7292: update tag/leaf data on set paths
-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 =