diff options
| author | Alexandre Flament <alex@al-f.net> | 2021-10-12 21:44:18 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-10-12 21:44:18 +0200 |
| commit | b86aacdad65f8c18f01392a1a18d021006e55b21 (patch) | |
| tree | 441777b67955178752d41f1496fcec1ac5877eba /searx/webapp.py | |
| parent | 4cc1ee8565e22442ae92ed5f2015749d684e6087 (diff) | |
| parent | f9c6393502ece3a678e530ca787efe2ea22b51d7 (diff) | |
Merge pull request #341 from dalf/verify_tor_on_start
[enh] verify that Tor proxy works every time searx starts
Diffstat (limited to 'searx/webapp.py')
| -rwxr-xr-x | searx/webapp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/webapp.py b/searx/webapp.py index 61992c99f..ab9c96712 100755 --- a/searx/webapp.py +++ b/searx/webapp.py @@ -1350,7 +1350,7 @@ if (not werkzeug_reloader or (werkzeug_reloader and os.environ.get("WERKZEUG_RUN_MAIN") == "true") ): plugin_initialize(app) - search_initialize(enable_checker=True) + search_initialize(enable_checker=True, check_network=True) def run(): |