Celery using amqp:// instead of redis

i used

pip install celery[redis]

in project settings:

CELERY_BROKER_URL = "redis://127.0.0.1:6379"

redis gives PONG answer

but its still using amqp when i run celery -A news worker -l info

Back to Top