Use gevent early monkey patch due to upstream issues

This commit is contained in:
Marko Bocevski 2020-06-11 10:30:11 +02:00
parent 73cb0d0ce2
commit 5b2f5cef9a
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ fi
python prerun.py
# Set the common uwsgi options
UWSGI_OPTS="--socket /tmp/uwsgi.sock --uid 92 --gid 92 --http :5000 --master --enable-threads --paste config:/srv/app/production.ini --lazy-apps --gevent 2000 -p 2 -L"
UWSGI_OPTS="--socket /tmp/uwsgi.sock --uid 92 --gid 92 --http :5000 --master --enable-threads --paste config:/srv/app/production.ini --lazy-apps --gevent 2000 -p 2 -L --gevent-early-monkey-patch"
# Check whether http basic auth password protection is enabled and enable basicauth routing on uwsgi respecfully
if [ $? -eq 0 ]