mirror of
https://github.com/jlengrand/bugsink.git
synced 2026-03-10 08:01:17 +00:00
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)
|