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
Description of the problem including expected versus actual behavior:
StringFielddataFormat is used to set the format of 'Fielddata' setting in a mapping.
The enum is missing a StringEnumConverter attribute, and as a result the mapping would contain the int value instead of the string value.
For example - fielddata: { format: 2 } instead of fielddata: { format: "disabled" }
ES will not complain about this invalid mapping, but it will just not honor it.