Skip to content

Commit

Permalink
fix: increase max_requests to 500
Browse files Browse the repository at this point in the history
  • Loading branch information
raphael0202 committed Nov 26, 2024
1 parent e1c1a06 commit b942c16
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gunicorn.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@
preload_app = bool(os.environ.get("GUNICORN_PRELOAD_APP", True))
timeout = 60
# Limit the impact of caching on RAM use by restarting workers
# every 50 requests
max_requests = 50
max_requests_jitter = 5
# every 500 requests
max_requests = 500
max_requests_jitter = 50

0 comments on commit b942c16

Please sign in to comment.