File tree Expand file tree Collapse file tree 4 files changed +8
-3
lines changed
Expand file tree Collapse file tree 4 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 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 }}
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 22Various backends for receiving edX LMS events..
33"""
44
5- __version__ = '9.0.0 '
5+ __version__ = '9.0.1 '
Original file line number Diff line number Diff 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' ,
You can’t perform that action at this time.
0 commit comments