From d272c0b1c2766e6e27ff641363c89bdb7b7a7ead Mon Sep 17 00:00:00 2001 From: David Fischer Date: Thu, 10 Aug 2023 16:30:04 -0700 Subject: [PATCH] Upgrade celery We've seen some prod issues with celery spawning more than one worker for the analyzer and supervisor not handling things correctly. Since this doesn't happen with our non-analyzer queue, I suspect it has something to do with high memory usage. Hopefully upgrading celery (which is probably a good idea anyway) will fix it. --- requirements/base.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements/base.txt b/requirements/base.txt index ba210af2..88641823 100644 --- a/requirements/base.txt +++ b/requirements/base.txt @@ -3,7 +3,7 @@ Django==3.2.20 pytz==2021.3 # Asynchronous tasks -celery[redis]<5.0 +celery[redis]==5.3.1 # Static files whitenoise==6.0.0