Создаю воркер через:
celery -A demidovsite worker --loglevel=DEBUG
запускаю таску через:
from demidovsite import celery
celery.debug_task.delay()
В воркере выдает что задание получено, а выполнения нету. В чем может быть проблема?
setting.py - https://github.com/DemidovEvg/site_python_exercise/blob/main/demidovsite/settings.py
celery.py -
https://github.com/DemidovEvg/site_python_exercise/blob/main/demidovsite/celery.py
как вызываешь таску? и странное название аргумента..
Таких читателей Бродского я ещё не видал
да, импортирую модуль celery.py в котором настройки celery и сама таска import os from celery import Celery # Set the default Django settings module for the 'celery' program. os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'proj.settings') app = Celery('proj') # Using a string here means the worker doesn't have to serialize # the configuration object to child processes. # - namespace='CELERY' means all celery-related configuration keys # should have a CELERY_ prefix. app.config_from_object('django.conf:settings', namespace='CELERY') # Load task modules from all registered Django apps. app.autodiscover_tasks() @app.task(bind=True) def debug_task(self): print(f'Request: {self.request!r}')
Обсуждают сегодня