mirror of
https://github.com/ChristianLight/tutor.git
synced 2024-12-12 14:17:46 +00:00
fix: replica set error from pymongo 3.10 -> 3.12 upgrade
The pymongo dependency for edx-platform was updated (3.10.1 to 3.12.3) in https://github.com/openedx/edx-platform/pull/30569 This caused the following error when running the edx-platform database migration split_modulestore_django.0002_data_migration as part of `tutor dev quickstart`: pymongo.errors.ServerSelectionTimeoutError: client is configured to connect to a replica set named '' but this node belongs to a set named 'None', Timeout: 30s, Topology Description: <TopologyDescription id: 62bdbaf182687350acf1aeec, topology_type: Single, servers: [<ServerDescription ('mongodb', 27017) server_type: Unknown, rtt: None, error=ConfigurationError("client is configured to connect to a replica set named '' but this node belongs to a set named 'None'")>]> This commit explicitly sets replicaSet to None to indicate that it's a standalone MongoDB instance. I also had to remove the CONTENTSTORE entry from auth.yml because edx-platform's devstack.py assumes it has a non-null value (set in common.py), and devstack.py executes before tutor's development.py can set this replicaSet value.
This commit is contained in:
parent
9d5e94b8d5
commit
6ac1c0d732
@ -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.
|
||||
|
@ -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:
|
||||
|
@ -16,6 +16,7 @@ mongodb_parameters = {
|
||||
"password": None,
|
||||
{% endif %}
|
||||
"db": "{{ MONGODB_DATABASE }}",
|
||||
"replicaSet": None,
|
||||
}
|
||||
DOC_STORE_CONFIG = mongodb_parameters
|
||||
CONTENTSTORE = {
|
||||
|
Loading…
Reference in New Issue
Block a user