From b9b3d8bab2d3d2984ded6b3f5ddfbb47841deb2b Mon Sep 17 00:00:00 2001 From: codl Date: Wed, 20 Sep 2017 13:45:20 +0200 Subject: [PATCH] fix procfile to allow a decent amout of concurrent jobs --- Procfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Procfile b/Procfile index caea62e..5838b5d 100644 --- a/Procfile +++ b/Procfile @@ -1,2 +1,3 @@ web: gunicorn -w 9 -t 3600 -b 127.0.0.1:42157 forget:app -worker: python tasks.py -B -Ofair +worker: celery -A tasks worker --concurrency=16 +beat: celery -A tasks beat