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
I'm having a slight trouble when merging. When I convert yaml declaration into golang struct, the result is not expected.
reproduce code is the follows:
When I run this program, I expect mk variable to hold merger_val, but mergee_val instead.
According to the doc, overwrite should not occur because current map has the param_key key.
Diving into source code, comparing two bytes does not work. In my opnion, user defined type paramType cause this problem. Actually, using string instead of paramType, the result holds "merger_val".
The text was updated successfully, but these errors were encountered:
I'm having a slight trouble when merging. When I convert yaml declaration into golang struct, the result is not expected.
reproduce code is the follows:
When I run this program, I expect mk variable to hold merger_val, but mergee_val instead.
According to the doc, overwrite should not occur because current map has the param_key key.
Diving into source code, comparing two bytes does not work. In my opnion, user defined type paramType cause this problem. Actually, using string instead of paramType, the result holds "merger_val".
The text was updated successfully, but these errors were encountered: