mirror of
https://github.com/bugsink/bugsink.git
synced 2026-05-07 23:39:59 -05:00
ab7ad72376
As per discussion with @sekrause on #101 Briefly: recent reduction is a good idea, but 1 is probably too little.
5 lines
116 B
Python
5 lines
116 B
Python
# gunicorn config file for Docker deployments
|
|
import multiprocessing
|
|
|
|
workers = min(multiprocessing.cpu_count(), 4)
|