mirror of https://github.com/tootsuite/mastodon
Fix dashboard check for Elasticsearch suggested command including incorrect names (#26658)
parent
8e8747c564
commit
072112867b
|
@ -86,7 +86,7 @@ class Admin::SystemCheck::ElasticsearchCheck < Admin::SystemCheck::BaseCheck
|
||||||
|
|
||||||
def mismatched_indexes
|
def mismatched_indexes
|
||||||
@mismatched_indexes ||= INDEXES.filter_map do |klass|
|
@mismatched_indexes ||= INDEXES.filter_map do |klass|
|
||||||
klass.index_name if Chewy.client.indices.get_mapping[klass.index_name]&.deep_symbolize_keys != klass.mappings_hash
|
klass.base_name if Chewy.client.indices.get_mapping[klass.index_name]&.deep_symbolize_keys != klass.mappings_hash
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue