fix: `object has no attribute 'get_metadata'` error in learning MFE

See: https://github.com/openedx/edx-platform/pull/29741
This commit is contained in:
Régis Behmo 2022-02-01 16:34:06 +01:00 committed by Régis Behmo
parent 9a4ea986e1
commit 123786193e
2 changed files with 5 additions and 1 deletions

View File

@ -4,8 +4,9 @@ Note: Breaking changes between versions are indicated by "💥".
## Unreleased
- [Bugfix] Fix `k8s start caddy` command.
- [Bugfix] Fix "Internal Server Error / AttributeError / object has no attribute 'get_metadata'" in learning MFE.
- [Improvement] Replace all links to github.com/edx by github.com/openedx, following the migration of all repositories.
- [Bugfix] Fix `k8s start caddy` command.
## v13.1.2 (2022-01-30)

View File

@ -58,6 +58,9 @@ RUN git fetch --depth=2 https://github.com/overhangio/edx-platform/ b63c01fb38a6
# Upgrade Django to 3.2.11
# https://github.com/openedx/edx-platform/commit/85eb44445b8a6207b967bd4af5666e521a4af9b5
RUN git fetch --depth=2 https://github.com/openedx/edx-platform/ 85eb44445b8a6207b967bd4af5666e521a4af9b5 && git cherry-pick 85eb44445b8a6207b967bd4af5666e521a4af9b5
# Fix Internal Server Error/AttributeError in learning MFE
# https://github.com/openedx/edx-platform/pull/29741
RUN git fetch --depth=2 https://github.com/openedx/edx-platform/ a76a79f973ca05f3921fa2a3428fa7052868a725 && git cherry-pick a76a79f973ca05f3921fa2a3428fa7052868a725
{% endif %}
{# Example: RUN git fetch --depth=2 https://github.com/openedx/edx-platform <GITSHA1> && git cherry-pick <GITSHA1> #}