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