0
0
Fork 0

Fix OpenSearch compatibility issue (#30278)

This commit is contained in:
Claire 2024-05-14 19:54:28 +02:00 committed by GitHub
parent 3a7aec2807
commit b5b84fad65
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 30 additions and 2 deletions

View file

@ -0,0 +1,11 @@
# frozen_string_literal: true
module Elasticsearch
module ClientExtensions
def verify_elasticsearch
@verified = true
end
end
end
Elasticsearch::Client.prepend(Elasticsearch::ClientExtensions)