diff --git a/CHANGELOG-nightly.md b/CHANGELOG-nightly.md index 6070b30..092f962 100644 --- a/CHANGELOG-nightly.md +++ b/CHANGELOG-nightly.md @@ -9,6 +9,7 @@ When backporting changes to master, we should keep only the entries that corresp facing changes. --> +- [Bugfix] Fix MongoDB replica set connection error resulting from edx-platform's pymongo (3.10.1 -> 3.12.3) upgrade ([edx-platform#30569](https://github.com/openedx/edx-platform/pull/30569)). (by @ormsbee) - [Improvement] For Tutor Nightly (and only Nightly), official plugins are now installed from their nightly branches on GitHub instead of a version range on PyPI. This will allow Nightly users to install all official plugins by running ``pip install -e ".[full]"``. - [Bugfix] Remove edX references from bulk emails ([issue](https://github.com/openedx/build-test-release-wg/issues/100)). - [Bugfix] Update ``celery`` invocations for lms-worker and cms-worker to be compatible with Celery 5 CLI. diff --git a/tutor/templates/apps/openedx/config/partials/auth.yml b/tutor/templates/apps/openedx/config/partials/auth.yml index 2ec6448..3e72058 100644 --- a/tutor/templates/apps/openedx/config/partials/auth.yml +++ b/tutor/templates/apps/openedx/config/partials/auth.yml @@ -1,7 +1,6 @@ SECRET_KEY: "{{ OPENEDX_SECRET_KEY }}" AWS_ACCESS_KEY_ID: "{{ OPENEDX_AWS_ACCESS_KEY }}" AWS_SECRET_ACCESS_KEY: "{{ OPENEDX_AWS_SECRET_ACCESS_KEY }}" -CONTENTSTORE: null DOC_STORE_CONFIG: null {{ patch("openedx-auth") }} XQUEUE_INTERFACE: diff --git a/tutor/templates/apps/openedx/settings/partials/common_all.py b/tutor/templates/apps/openedx/settings/partials/common_all.py index d6a9291..8a74c88 100644 --- a/tutor/templates/apps/openedx/settings/partials/common_all.py +++ b/tutor/templates/apps/openedx/settings/partials/common_all.py @@ -16,6 +16,7 @@ mongodb_parameters = { "password": None, {% endif %} "db": "{{ MONGODB_DATABASE }}", + "replicaSet": None, } DOC_STORE_CONFIG = mongodb_parameters CONTENTSTORE = {