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
It is possible to manually create a custom normalizer without the type property explicitly specified. Attempting to deserialize this with the client such as when retrieving the index with client.indices.get() it will fail due to no type property. The server's logic is that type must be specified unless tokenizer is specified in which case type: "custom" is assumed.
What is the bug?
It is possible to manually create a custom normalizer without the type property explicitly specified. Attempting to deserialize this with the client such as when retrieving the index with client.indices.get() it will fail due to no type property. The server's logic is that type must be specified unless tokenizer is specified in which case type: "custom" is assumed.
How can one reproduce the bug?
client.indices().get(b -> b.index("custom-normalizer-index"))
What is the expected behavior?
Analyzer to successfully deserialize as a CustomNormalizer
What is your host/environment?
MacOS Sonoma 14.5
Do you have any screenshots?
Do you have any additional context?
Issue is very similiar to #1032, but for normalizer instead of analyzer.
The text was updated successfully, but these errors were encountered: