2👍
It turns out that django-kombu was moved into the kombu core. So, the following changes got things working again for me:
- Uninstall django-kombu
- In settings, remove
djkombu
fromINSTALLED_APPS
and replace withkombu.transport.django
. - In settings, update
BROKER_BACKEND
todjango
👤Josh
Source:stackexchange.com