Попробовал сделать для себя асинхронную отправку писем в джанго через селери. Все по туториалу запустил, решил поставить n секунд sleep-а в таске и смотрю сам ответ от сервера приходит через n секунд, но сама таска отрабатывает. Вроде попробовал подкорректировать что где нашел, но проблема не исчезла.
settings.py
CELERY_BROKER_URL = 'redis://localhost'
CELERY_ACCEPT_CONTENT = ['application/json']
CELERY_TASK_SERIALIZER = 'json'
CELERY_RESULT_BACKEND = 'redis://localhost:6379'
BROKER_URL = 'redis://localhost:6379'
CELERY_RESULT_BACKEND = 'redis://localhost:6379'
CELERY_RESULT_SERIALIZER = 'json'
celery.py
import os
from celery import Celery
# set the default Django settings module for the 'celery' program.
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'send_mails.settings')
app = Celery('send_mails')
# 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 app configs.
app.autodiscover_tasks()
tasks(упрощенно)
import time
from celery import shared_task
@shared_task
def sleep():
time.sleep(5)