forked from tanner/qotnews
Monkeypatch earlier
This commit is contained in:
parent
88d2216627
commit
992c1c1233
|
@ -3,6 +3,11 @@ logging.basicConfig(
|
|||
format='%(asctime)s - %(name)s - %(levelname)s - %(message)s',
|
||||
level=logging.INFO)
|
||||
|
||||
import gevent
|
||||
from gevent import monkey
|
||||
monkey.patch_all()
|
||||
from gevent.pywsgi import WSGIServer
|
||||
|
||||
import copy
|
||||
import json
|
||||
import threading
|
||||
|
@ -19,12 +24,6 @@ from flask import abort, Flask, request, render_template, stream_with_context, R
|
|||
from werkzeug.exceptions import NotFound
|
||||
from flask_cors import CORS
|
||||
|
||||
import gevent
|
||||
from gevent import monkey
|
||||
from gevent.pywsgi import WSGIServer
|
||||
|
||||
monkey.patch_all()
|
||||
|
||||
database.init()
|
||||
search.init()
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user