From f195d98bfbcf96e7bf2532419b1f3804ebd739a1 Mon Sep 17 00:00:00 2001 From: Richard Lyons Date: Wed, 19 Jun 2024 22:55:26 +0200 Subject: [PATCH] Fix search_url building. --- searx/engines/elasticsearch.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/searx/engines/elasticsearch.py b/searx/engines/elasticsearch.py index 7bddab1cb..c721114a7 100644 --- a/searx/engines/elasticsearch.py +++ b/searx/engines/elasticsearch.py @@ -49,7 +49,7 @@ base_url = 'http://localhost:9200' username = '' password = '' index = '' -search_url = base_url + '/' + index + '/_search' +search_url = '{base_url}/{index}/_search' query_type = 'match' custom_query_json = {} show_metadata = False @@ -71,7 +71,7 @@ def request(query, params): if username and password: params['auth'] = (username, password) - params['url'] = search_url + params['url'] = search_url.format(base_url=base_url, index=index) params['method'] = 'GET' params['data'] = dumps(_available_query_types[query_type](query)) params['headers']['Content-Type'] = 'application/json'