Actions
Bug #17830
closedUpdating property merge them in place of replacing them
Status:
Released
Priority:
N/A
Assignee:
Category:
Web - Config management
Target version:
Pull Request:
Severity:
UX impact:
User visibility:
Effort required:
Priority:
0
Name check:
To do
Fix check:
Checked
Regression:
Description
It's the root cause of: https://issues.rudder.io/issues/17829
If we have a json property in a node, then sub-items are merged, not replaced with new value.
For example:
Prop time 1:
{"env":"prod", "merge": { "test1":"val1" } }
Update with:
{"env":"prod", "merge": { "test2":"val2" } }
Result on node to:
{"env":"prod", "merge": { "test1":"val1", "test2":"val2" } }
Actions