From 9c6d6bdf339591761636a02b92d319e0d43a7aef Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 6 Sep 2022 19:28:57 +0000 Subject: [PATCH 1/2] Bump django-celery-results from 2.2.0 to 2.4.0 Bumps [django-celery-results](https://github.com/celery/django-celery-results) from 2.2.0 to 2.4.0. - [Release notes](https://github.com/celery/django-celery-results/releases) - [Changelog](https://github.com/celery/django-celery-results/blob/master/Changelog) - [Commits](https://github.com/celery/django-celery-results/compare/v2.2.0...v2.4.0) --- updated-dependencies: - dependency-name: django-celery-results dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index fbedbcb19f..7cd743a5a8 100644 --- a/requirements.txt +++ b/requirements.txt @@ -68,7 +68,7 @@ django==3.2.14 # jsonfield django-bulk-update==2.2.0 # via -r requirements.in -django-celery-results==2.2.0 +django-celery-results==2.4.0 # via -r requirements.in django-cte==1.2.1 # via -r requirements.in From 0ae3e2516f09887379c8b2e1727f9090b22d7a4f Mon Sep 17 00:00:00 2001 From: Blaine Jester Date: Thu, 8 Sep 2022 09:13:54 -0700 Subject: [PATCH 2/2] Add setting needed for changes in django-celery-results --- contentcuration/contentcuration/settings.py | 1 + 1 file changed, 1 insertion(+) diff --git a/contentcuration/contentcuration/settings.py b/contentcuration/contentcuration/settings.py index d7f0c93fdf..394cc286cd 100644 --- a/contentcuration/contentcuration/settings.py +++ b/contentcuration/contentcuration/settings.py @@ -358,6 +358,7 @@ def gettext(s): "accept_content": ['application/json'], "task_serializer": "json", "result_serializer": "json", + "result_extended": True, "worker_send_task_events": True, }