Skip to content
Snippets Groups Projects
Unverified Commit 1c434615 authored by Takeshi Umeda's avatar Takeshi Umeda Committed by GitHub
Browse files

Fix workaround for Elasticsearch 7.x (#13828)

parent e6706d17
No related branches found
No related tags found
No related merge requests found
......@@ -29,3 +29,22 @@ end
# Mastodon is run with hidden services enabled, because
# ElasticSearch is *not* supposed to be accessed through a proxy
Faraday.ignore_env_proxy = true
# Elasticsearch 7.x workaround
Elasticsearch::Transport::Client.prepend Module.new {
def search(arguments = {})
arguments[:rest_total_hits_as_int] = true
super arguments
end
}
Elasticsearch::API::Indices::IndicesClient.prepend Module.new {
def create(arguments = {})
arguments[:include_type_name] = true
super arguments
end
def put_mapping(arguments = {})
arguments[:include_type_name] = true
super arguments
end
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment