mirror of
https://github.com/searxng/searxng.git
synced 2025-01-02 06:28:40 +00:00
[fix] timeout to autocompleters
This commit is contained in:
parent
6f73f4e7a4
commit
9d11b36b5b
1 changed files with 9 additions and 1 deletions
|
@ -19,11 +19,19 @@ along with searx. If not, see < http://www.gnu.org/licenses/ >.
|
||||||
from lxml import etree
|
from lxml import etree
|
||||||
from json import loads
|
from json import loads
|
||||||
from urllib import urlencode
|
from urllib import urlencode
|
||||||
|
from searx import settings
|
||||||
from searx.languages import language_codes
|
from searx.languages import language_codes
|
||||||
from searx.engines import (
|
from searx.engines import (
|
||||||
categories, engines, engine_shortcuts
|
categories, engines, engine_shortcuts
|
||||||
)
|
)
|
||||||
from searx.poolrequests import get
|
from searx.poolrequests import get as http_get
|
||||||
|
|
||||||
|
|
||||||
|
def get(*args, **kwargs):
|
||||||
|
if not 'timeout' in kwargs:
|
||||||
|
kwargs['timeout'] = settings['server']['request_timeout']
|
||||||
|
|
||||||
|
return http_get(*args, **kwargs)
|
||||||
|
|
||||||
|
|
||||||
def searx_bang(full_query):
|
def searx_bang(full_query):
|
||||||
|
|
Loading…
Reference in a new issue