diff options
author | John Estabrook <jestabro@vyos.io> | 2025-04-03 10:19:47 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-03 10:19:47 -0500 |
commit | 0fb5e2f781725196ae010cf64e4d185a8f5ce721 (patch) | |
tree | 8c9d9d1b48578e61edbd3fc45195d92e70320714 /src/session.ml | |
parent | aedecf6fa96509ef59fd2e1f607a8a13c18d214b (diff) | |
parent | f2184939beb28fbe2ae87919581bf4df21798438 (diff) | |
download | vyconf-0fb5e2f781725196ae010cf64e4d185a8f5ce721.tar.gz vyconf-0fb5e2f781725196ae010cf64e4d185a8f5ce721.zip |
T7292: update tag/leaf data on set paths
Diffstat (limited to 'src/session.ml')
-rw-r--r-- | src/session.ml | 6 |
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 = |