From b97006d43c7f248a353dc81dc518fe001b1cf703 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Sun, 22 Mar 2020 17:13:52 -0700 Subject: [PATCH] Adds celery broker to settings --- fedireads/settings.py | 1 + 1 file changed, 1 insertion(+) diff --git a/fedireads/settings.py b/fedireads/settings.py index 7612b716a..23b2c1fd4 100644 --- a/fedireads/settings.py +++ b/fedireads/settings.py @@ -25,6 +25,7 @@ OL_URL = env('OL_URL') CELERY_BROKER_URL = env('CELERY_BROKER') CELERY_ACCEPT_CONTENT = ['json'] CELERY_TASK_SERIALIZER = 'json' +CELERY_RESULT_BACKEND = 'amqp' # Application definition