lower max requests per worker

This commit is contained in:
wh1te909
2023-10-26 06:11:14 +00:00
parent b3ba34d980
commit 0ac415ad83

View File

@@ -35,7 +35,7 @@ class Command(BaseCommand):
"buffer-size": str(getattr(settings, "UWSGI_BUFFER_SIZE", 65535)),
"vacuum": str(getattr(settings, "UWSGI_VACUUM", True)).lower(),
"die-on-term": str(getattr(settings, "UWSGI_DIE_ON_TERM", True)).lower(),
"max-requests": str(getattr(settings, "UWSGI_MAX_REQUESTS", 500)),
"max-requests": str(getattr(settings, "UWSGI_MAX_REQUESTS", 50)),
"disable-logging": str(
getattr(settings, "UWSGI_DISABLE_LOGGING", True)
).lower(),