Redis – After scheduling a new task, previously scheduled tasks are not getting executed by Celery Beat (Django)
I have a Django (4.2.2) app running with Python (3.10.12), Celery (5.4.0), Celery Beat (2.6.0), Django Celery Results (2.5.1), Redis and Postgres. Here is my celery configuration: CELERY_BROKER_URL = "redis://localhost:6379/3" from __future__ import absolute_import, unicode_literals from celery import Celery from…