skip to Main Content

Redis – celery-beat KeyError: 'scheduler'

I am trying to run a periodic celery task using celery beat and docker for my Flask application. However when I run the container I get the below error: Removing corrupted schedule file 'celerybeat-schedule': error(22, 'Invalid argument') Traceback (most recent…

VIEW QUESTION

Redis – Why celery beat doesn't schedule periodic tasks?

I've followed the celery doc https://docs.celeryproject.org/en/latest/userguide/periodic-tasks.html to create an app and periodic tasks as below: $ tree demo/ demo/ ├── config.py ├── __init__.py └── tasks.py $ cat demo/__init__.py # -*- coding: utf-8 -*- from celery import Celery app = Celery('demo')…

VIEW QUESTION
Back To Top
Search