diff options
author | Adam Tauber <asciimoo@gmail.com> | 2018-08-19 15:29:52 +0200 |
---|---|---|
committer | Adam Tauber <asciimoo@gmail.com> | 2018-08-19 15:30:12 +0200 |
commit | f7bb45e8912a8529e59146afd3b9cf3413d70a67 (patch) | |
tree | e56e207975db5bb2d09bd0053e1e7519f0e15d5c /searx/search.py | |
parent | 69d1dd3f862ee491518bc837325a498e66f925d0 (diff) | |
download | searxng-f7bb45e8912a8529e59146afd3b9cf3413d70a67.tar.gz searxng-f7bb45e8912a8529e59146afd3b9cf3413d70a67.zip |
[enh] admin configurable suspend time of errored engines - closes #1266
Diffstat (limited to 'searx/search.py')
-rw-r--r-- | searx/search.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/searx/search.py b/searx/search.py index 945f32197..f50391f16 100644 --- a/searx/search.py +++ b/searx/search.py @@ -147,7 +147,8 @@ def search_one_request_safe(engine_name, query, request_params, result_container if requests_exception: # update continuous_errors / suspend_end_time engine.continuous_errors += 1 - engine.suspend_end_time = time() + min(60, engine.continuous_errors) + engine.suspend_end_time = time() + min(settings['search']['max_ban_time_on_fail'], + engine.continuous_errors*settings['search']['ban_time_on_fail']) else: # no HTTP error (perhaps an engine error) # anyway, reset the suspend variables |