InvenTree/docker/gunicorn.conf.py

7 lines
116 B
Python
Raw Normal View History

2021-04-01 09:38:18 +00:00
import multiprocessing
workers = multiprocessing.cpu_count() * 2 + 1
max_requests = 1000
max_requests_jitter = 50