Skip to content

Commit

Permalink
fix: revert max_requests limit on gunicorn
Browse files Browse the repository at this point in the history
  • Loading branch information
raphael0202 committed Nov 27, 2024
1 parent 99a1ba8 commit fbd9554
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 @@ -9,7 +9,7 @@
# Default to True (production) if not specified
preload_app = bool(os.environ.get("GUNICORN_PRELOAD_APP", True))
timeout = 60
# Limit the impact of caching on RAM use by restarting workers
# (Disabled for now) Limit the impact of caching on RAM use by restarting workers
# every 500 requests
max_requests = 500
max_requests_jitter = 50
# max_requests = 500
# max_requests_jitter = 50

0 comments on commit fbd9554

Please sign in to comment.