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
Looks like there are some use cases in #16137 that were not fully addressed in #16833. In particular, some values in string presentation of a geo_point are not handled correctly. To reproduce:
DELETE example
PUT example
{
"mappings": {
"doc": {
"properties": {
"location": {
"type": "geo_point",
"ignore_malformed": true
}
}
}
}
}
PUT example/doc/1
{
"location": "NaN,NaN"
}
PUT example/doc/2
{
"location": "-,-"
}