From 605f38b3521fa803a6d7c09dcf474262008e698c Mon Sep 17 00:00:00 2001 From: Markus Heiser Date: Fri, 29 Nov 2024 14:41:48 +0100 Subject: [fix] update_currencies.py: github CI has longer timeouts Github action Update data - update_currencies [1]: ./manage pyenv.cmd python ./searxng_extra/update/update_currencies.py fails with ``httpcore.ReadTimeout`` / the default timeout is 3sec. [1] https://github.com/searxng/searxng/actions/runs/12076864366/job/33703464399 Signed-off-by: Markus Heiser --- searxng_extra/update/update_currencies.py | 1 + 1 file changed, 1 insertion(+) (limited to 'searxng_extra/update') diff --git a/searxng_extra/update/update_currencies.py b/searxng_extra/update/update_currencies.py index dcfa6e7a2..3cadcfe86 100755 --- a/searxng_extra/update/update_currencies.py +++ b/searxng_extra/update/update_currencies.py @@ -92,6 +92,7 @@ def add_currency_label(db, label, iso4217, language): def wikidata_request_result_iterator(request): + wikidata.timeout = 30 # github CI has longer timeouts result = wikidata.send_wikidata_query(request.replace('%LANGUAGES_SPARQL%', LANGUAGES_SPARQL)) if result is not None: yield from result['results']['bindings'] -- cgit v1.2.3