Reformat OpenSearch

modern-tables
Mark Veidemanis 2 years ago
parent 7c53e0ec9d
commit d0ecc92169
Signed by: m
GPG Key ID: 5ACFCEED46C0904F

@ -5,8 +5,9 @@ from opensearchpy import OpenSearch
def initialise_opensearch():
auth = (settings.OPENSEARCH_USERNAME, settings.OPENSEARCH_PASSWORD)
client = OpenSearch(
# fmt: off
hosts=[{"host": settings.OPENSEARCH_URL,
"port": settings.OPENSEARCH_PORT}],
"port": settings.OPENSEARCH_PORT}],
http_compress=False, # enables gzip compression for request bodies
http_auth=auth,
# client_cert = client_cert_path,
@ -35,5 +36,7 @@ def construct_query(query):
def run_main_query(client, query):
search_query = construct_query(query)
response = client.search(body=search_query, index=settings.OPENSEARCH_INDEX_MAIN)
# fmt: off
response = client.search(body=search_query,
index=settings.OPENSEARCH_INDEX_MAIN)
return response

Loading…
Cancel
Save