PADV-1346: Backport edx-platform changes needed for Event Bus to work on our olive instance. #124
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Ticket
https://agile-jira.pearson.com/browse/PADV-1346
Description
This PR aims to add the changes made in upstream to our edx-platform repository in order for Event Bus to work with the Credly project integration. Changes add:
Changes made
Cherrypick the follwing commits from upstream https://github.com/openedx/edx-platform:
How to test?
Config
Consuming events
./manage.py consume_events --topic learning-badges-lifecycle --group_id test_group --extra '{"consumer_name": "test_group.c1"}'
Produce event
./manage.py lms produce_event --signal openedx_events.learning.signals.COURSE_PASSING_STATUS_UPDATED --topic learning-badges-lifecycle --key-field user.id --data '{"course_passing_status": {"is_passing": true, "user": {"pii": {"username": "testuser", "email": "[email protected]", "name": "Test User"}, "id": 123, "is_active": true}, "course": {"course_key": "course-v1:edX+DemoX+Demo_Course", "display_name": "Demo Course"}}}'