aboutsummaryrefslogtreecommitdiffstats
path: root/checker/src/gunicorn.conf.py
diff options
context:
space:
mode:
Diffstat (limited to 'checker/src/gunicorn.conf.py')
-rw-r--r--checker/src/gunicorn.conf.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/checker/src/gunicorn.conf.py b/checker/src/gunicorn.conf.py
index 095073e..159bc51 100644
--- a/checker/src/gunicorn.conf.py
+++ b/checker/src/gunicorn.conf.py
@@ -1,7 +1,7 @@
import multiprocessing
-worker_class = "eventlet"
-workers = multiprocessing.cpu_count() * 2 + 1
+worker_class = "uvicorn.workers.UvicornWorker"
+workers = min(4, multiprocessing.cpu_count())
bind = "0.0.0.0:3031"
timeout = 90
keepalive = 3600