Skip to content

Commit

Permalink
fix: use event_transformer as backend name (#416)
Browse files Browse the repository at this point in the history
* fix: use event_transformer as backend name

* chore: bump version to v9.0.1

* build: update codecov action to use repo-specific tokens (#417)
  • Loading branch information
Cristhian Garcia authored Apr 25, 2024
1 parent 656348e commit a09e875
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ jobs:

- name: Run Coverage
if: matrix.python-version == '3.8' && matrix.toxenv=='django42'
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
with:
flags: unittests
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}
4 changes: 4 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ Change Log
Unreleased
~~~~~~~~~~

[9.0.1]

* Fix an issue with the event routing backend async task to not find the event-tracking backend.

[9.0.0]
~~~~~~~

Expand Down
2 changes: 1 addition & 1 deletion event_routing_backends/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
Various backends for receiving edX LMS events..
"""

__version__ = '9.0.0'
__version__ = '9.0.1'
2 changes: 1 addition & 1 deletion event_routing_backends/settings/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ def plugin_settings(settings):
'event_transformer': {
'ENGINE': 'eventtracking.backends.async_routing.AsyncRoutingBackend',
'OPTIONS': {
'backend_name': 'events',
'backend_name': 'event_transformer',
'processors': [
{
'ENGINE': 'eventtracking.processors.whitelist.NameWhitelistProcessor',
Expand Down

0 comments on commit a09e875

Please sign in to comment.