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
fix: change putDimensions to update existing dimension sets when duplicate
This change ensures new dimension key-values are used for the EMF root node
by moving duplicates to the end of the collection.
Example:
```
[
{ "keyA": "value1" },
{ "keyA": "value2" },
]
// expected target member: { "keyA": "value2" }
```
[TESTING]
Updated unit tests to check for this case wherein putDimensions
may be triggered using various dimension set lengths, values, and order.
0 commit comments