aboutsummaryrefslogtreecommitdiffstats
path: root/manage.py
diff options
context:
space:
mode:
authorGravatar Dennis Pham <[email protected]>2020-12-13 23:26:07 -0500
committerGravatar GitHub <[email protected]>2020-12-13 23:26:07 -0500
commit13ffd1229b50b9ffac22bec404184601c74ddc7c (patch)
tree613f009014f660d2786dd786eedd64496403a801 /manage.py
parentAdd tests for infraction deletion method (diff)
parentMerge pull request #437 from python-discord/bugfix/lemon/snekbox-not-showing-... (diff)
Merge branch 'master' into ks123/infractions/delete-method
Diffstat (limited to 'manage.py')
-rwxr-xr-xmanage.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/manage.py b/manage.py
index 446b1af3..a025e7b1 100755
--- a/manage.py
+++ b/manage.py
@@ -163,7 +163,11 @@ class SiteManager:
"-b", "0.0.0.0:8000",
"pydis_site.wsgi:application",
"--threads", "8",
- "-w", "4"
+ "-w", "4",
+ "--max-requests", "1000",
+ "--max-requests-jitter", "50",
+ "--statsd-host", "graphite.default.svc.cluster.local:8125",
+ "--statsd-prefix", "site",
]
# Run gunicorn for the production server.