浏览代码

[fix] load engines if debug mode is enabled using uwsgi

Adam Tauber 7 年前
父节点
当前提交
6d76d9b202
共有 1 个文件被更改,包括 3 次插入1 次删除
  1. 3
    1
      searx/webapp.py

+ 3
- 1
searx/webapp.py 查看文件

@@ -120,7 +120,9 @@ app.jinja_env.trim_blocks = True
120 120
 app.jinja_env.lstrip_blocks = True
121 121
 app.secret_key = settings['server']['secret_key']
122 122
 
123
-if not searx_debug or os.environ.get("WERKZEUG_RUN_MAIN") == "true":
123
+if not searx_debug \
124
+   or os.environ.get("WERKZEUG_RUN_MAIN") == "true" \
125
+   or os.environ.get('UWSGI_ORIGINAL_PROC_NAME') is not None:
124 126
     initialize_engines(settings['engines'])
125 127
 
126 128
 babel = Babel(app)