aboutsummaryrefslogtreecommitdiffstats
path: root/checker/src/gunicorn.conf.py
diff options
context:
space:
mode:
authorLouis Burda <quent.burda@gmail.com>2021-06-24 02:52:21 +0200
committerLouis Burda <quent.burda@gmail.com>2021-06-24 02:52:51 +0200
commita0bd3d833d916cadd23d17d0b3784e28c729967d (patch)
treedea52e19b1518f1489669c8a1e29d340ced61989 /checker/src/gunicorn.conf.py
parentaeb66a7b19008fabecbca23a1e21a9d6942ec28a (diff)
downloadenowars5-service-stldoctor-a0bd3d833d916cadd23d17d0b3784e28c729967d.tar.gz
enowars5-service-stldoctor-a0bd3d833d916cadd23d17d0b3784e28c729967d.zip
various fixes made while stress-testing exploit
Diffstat (limited to 'checker/src/gunicorn.conf.py')
-rw-r--r--checker/src/gunicorn.conf.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/checker/src/gunicorn.conf.py b/checker/src/gunicorn.conf.py
index b049e48..095073e 100644
--- a/checker/src/gunicorn.conf.py
+++ b/checker/src/gunicorn.conf.py
@@ -1,10 +1,8 @@
import multiprocessing
-worker_class = "gevent"
+worker_class = "eventlet"
workers = multiprocessing.cpu_count() * 2 + 1
bind = "0.0.0.0:3031"
timeout = 90
keepalive = 3600
-max_requests = 100
preload_app = True
-max_requests_jitter = 30