ignore-unavial-fix
All checks were successful
Deploy to core / deploy (push) Successful in 1m36s

This commit is contained in:
Untone 2024-01-29 06:09:40 +03:00
parent 4b9382c47d
commit 8a88a98b53

View File

@ -62,7 +62,7 @@ class SearchService:
def delete_index(self):
if not self.disabled and self.client:
self.client.indices.delete(index=self.index_name, params={'ignore_unavailable': True})
self.client.indices.delete(index=self.index_name, ignore_unavailable=True)
def create_index(self):
index_settings = {