You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sometimes we need to change some nested properties and we don't want to nail other properties (to make it possible to update them via discovery).
For example:
It deeply merges the custom config on top of the config fetched from the discovery
It deeply merges only Objects, other types (primitives and arrays) are just replaced. So if you want to append some values to the array — copy-paste the entire array from the original config and append the required value to it.
If User specified "someProp": null — merging configs should omit someProp key
Rationale
Sometimes we need to change some nested properties and we don't want to nail other properties (to make it possible to update them via discovery).
For example:
Acceptance criteria
"someProp": null
— merging configs should omitsomeProp
keyExample
The text was updated successfully, but these errors were encountered: