Skip to content

Commit a09e875

Browse files
author
Cristhian Garcia
authored
fix: use event_transformer as backend name (#416)
* fix: use event_transformer as backend name * chore: bump version to v9.0.1 * build: update codecov action to use repo-specific tokens (#417)
1 parent 656348e commit a09e875

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ jobs:
3838

3939
- name: Run Coverage
4040
if: matrix.python-version == '3.8' && matrix.toxenv=='django42'
41-
uses: codecov/codecov-action@v3
41+
uses: codecov/codecov-action@v4
4242
with:
4343
flags: unittests
4444
fail_ci_if_error: true
45+
token: ${{ secrets.CODECOV_TOKEN }}

CHANGELOG.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ Change Log
1414
Unreleased
1515
~~~~~~~~~~
1616

17+
[9.0.1]
18+
19+
* Fix an issue with the event routing backend async task to not find the event-tracking backend.
20+
1721
[9.0.0]
1822
~~~~~~~
1923

event_routing_backends/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
Various backends for receiving edX LMS events..
33
"""
44

5-
__version__ = '9.0.0'
5+
__version__ = '9.0.1'

event_routing_backends/settings/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ def plugin_settings(settings):
184184
'event_transformer': {
185185
'ENGINE': 'eventtracking.backends.async_routing.AsyncRoutingBackend',
186186
'OPTIONS': {
187-
'backend_name': 'events',
187+
'backend_name': 'event_transformer',
188188
'processors': [
189189
{
190190
'ENGINE': 'eventtracking.processors.whitelist.NameWhitelistProcessor',

0 commit comments

Comments
 (0)