ソースを参照

[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)