Skip to content

Commit

Permalink
Fixed worker count on scoreboard-optimizations
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonLovesDoggo committed Mar 11, 2024
1 parent fa5746b commit a5e8e1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion container/gunicorn.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
import multiprocessing

workers = multiprocessing.cpu_count()
workers = (2 * multiprocessing.cpu_count()) + 1

0 comments on commit a5e8e1d

Please sign in to comment.