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
{{ message }}
This repository has been archived by the owner on Jun 22, 2020. It is now read-only.
elasticsearch requires index names to be lowercase
URLs, generally, are case-insensitive.
so, when we get the index name from the URL, we should downcase it to match what elasticsearch is expecting (and so users still can rely on case-insensitive URLs) -- so /search/MYINDEX is the same as /search/myindex, both mapping to the myindex index in elasticsearch
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
elasticsearch requires index names to be lowercase
URLs, generally, are case-insensitive.
so, when we get the index name from the URL, we should downcase it to match what elasticsearch is expecting (and so users still can rely on case-insensitive URLs) -- so /search/MYINDEX is the same as /search/myindex, both mapping to the myindex index in elasticsearch
The text was updated successfully, but these errors were encountered: