From 54d9fe20e717941d813b8c4950e65a89c38ef6cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9gis=20Behmo?= Date: Tue, 14 Apr 2020 19:49:18 +0200 Subject: [PATCH] Fix missing celery tasks in the CMS This should spare us quite a few error messages in the CMS worker. --- CHANGELOG.md | 4 ++++ tutor/templates/build/openedx/Dockerfile | 5 +++++ 2 files changed, 9 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0407e20..9306583 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ Note: Breaking changes between versions are indicated by "💥". +## Unreleased + +- [Bugfix] Fix missing celery tasks in the CMS + ## v3.11.10 (2020-04-14) - [Bugfix] Fix updates to the course structure in the LMS (#302) diff --git a/tutor/templates/build/openedx/Dockerfile b/tutor/templates/build/openedx/Dockerfile index 81039b9..6c94d77 100644 --- a/tutor/templates/build/openedx/Dockerfile +++ b/tutor/templates/build/openedx/Dockerfile @@ -31,6 +31,11 @@ WORKDIR /openedx/edx-platform # Apply patches # Allow SigV4 authentication for video uploads to S3 https://github.com/edx/edx-platform/pull/22080 RUN curl https://github.com/overhangio/edx-platform/commit/0d4f6cc3433013960b28e963c4094ef2a2a92f04.patch | git apply - +# Resolve missing tasks in CMS +# https://github.com/edx/edx-platform/pull/21297/ +# https://github.com/edx/edx-platform/pull/21305/ +RUN curl https://github.com/edx/edx-platform/commit/adb2c672e4d17cc1c42bdc206a0051e0fa16b5be.patch | git apply - +RUN curl https://github.com/edx/edx-platform/commit/b7ecd80a2bef0d845c3bce97818e70fb3ed9e36d.patch | git apply - # Download extra locales to /openedx/locale RUN cd /tmp \