Skip to content

Commit

Permalink
Hardcode to 4 workers (#3424)
Browse files Browse the repository at this point in the history
* set gunicorn workers using cpu count

* maybe just 4 then
  • Loading branch information
timoballard authored Feb 16, 2024
1 parent a3c9982 commit f9fb066
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions backend/gunicorn.conf.py
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
from multiprocessing import cpu_count

workers = cpu_count() * 2 + 1
workers = 4

0 comments on commit f9fb066

Please sign in to comment.