From 13d3b24ec2ba5eb662dd0f4730cae4b6a5701aa2 Mon Sep 17 00:00:00 2001 From: Sean Morley Date: Fri, 21 Mar 2025 20:27:46 -0400 Subject: [PATCH] chore: Reduce Gunicorn worker count from 4 to 2 for optimized resource usage --- backend/entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/entrypoint.sh b/backend/entrypoint.sh index 780a182..19444fb 100644 --- a/backend/entrypoint.sh +++ b/backend/entrypoint.sh @@ -65,5 +65,5 @@ cat /code/adventurelog.txt # Start Gunicorn in foreground exec gunicorn main.wsgi:application \ --bind 0.0.0.0:8000 \ - --workers 4 \ + --workers 2 \ --timeout 120