mirror of
https://github.com/searxng/searxng
synced 2024-11-09 01:10:26 +00:00
Merge pull request #73 from posativ/fix/gevent-monkeypatch
fix gevent's monkey patch position
This commit is contained in:
commit
959a67420e
@ -17,6 +17,9 @@ along with searx. If not, see < http://www.gnu.org/licenses/ >.
|
|||||||
(C) 2013- by Adam Tauber, <asciimoo@gmail.com>
|
(C) 2013- by Adam Tauber, <asciimoo@gmail.com>
|
||||||
'''
|
'''
|
||||||
|
|
||||||
|
from gevent import monkey; monkey.patch_all()
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
from sys import path
|
from sys import path
|
||||||
from os.path import realpath, dirname
|
from os.path import realpath, dirname
|
||||||
@ -473,9 +476,6 @@ def favicon():
|
|||||||
|
|
||||||
|
|
||||||
def run():
|
def run():
|
||||||
from gevent import monkey
|
|
||||||
monkey.patch_all()
|
|
||||||
|
|
||||||
app.run(
|
app.run(
|
||||||
debug=settings['server']['debug'],
|
debug=settings['server']['debug'],
|
||||||
use_debugger=settings['server']['debug'],
|
use_debugger=settings['server']['debug'],
|
||||||
|
Loading…
Reference in New Issue
Block a user