diff --git a/src/gunicorn.conf.py b/src/gunicorn.conf.py index 047ec33..56b82ce 100644 --- a/src/gunicorn.conf.py +++ b/src/gunicorn.conf.py @@ -5,7 +5,7 @@ app_host, app_port = dashboard.get_host_bind() worker_class = 'gthread' workers = multiprocessing.cpu_count() * 2 + 1 -threads = 2 +threads = 4 bind = f"{app_host}:{app_port}" daemon = True pidfile = './gunicorn.pid'