Explorar el Código

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

Adam Tauber hace 7 años
padre
commit
6d76d9b202
Se han modificado 1 ficheros con 3 adiciones y 1 borrados
  1. 3
    1
      searx/webapp.py

+ 3
- 1
searx/webapp.py Ver fichero

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