Skip to content

Commit

Permalink
fix: signal handlers not being properly connected
Browse files Browse the repository at this point in the history
  • Loading branch information
alangsto committed Sep 2, 2021
1 parent 4597bfd commit e63aa61
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,11 @@ Change Log
Unreleased
~~~~~~~~~~

[3.24.4] - 2021-09-02
~~~~~~~~~~~~~~~~~~~~~
* Add testing for exam attempt email failure and related logging
* Fix signal handler connection

[3.24.3] - 2021-09-02
~~~~~~~~~~~~~~~~~~~~~
Expand Down
2 changes: 1 addition & 1 deletion edx_proctoring/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"""

# Be sure to update the version number in edx_proctoring/package.json
__version__ = '3.24.3'
__version__ = '3.24.4'

default_app_config = 'edx_proctoring.apps.EdxProctoringConfig' # pylint: disable=invalid-name
2 changes: 1 addition & 1 deletion edx_proctoring/apps.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ def ready(self):
"""
# pylint: disable=unused-import
# pylint: disable=import-outside-toplevel
from edx_proctoring import signals
from edx_proctoring import handlers, signals
config = settings.PROCTORING_BACKENDS

self.backends = {} # pylint: disable=W0201
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@edx/edx-proctoring",
"//": "Note that the version format is slightly different than that of the Python version when using prereleases.",
"version": "3.24.3",
"version": "3.24.4",
"main": "edx_proctoring/static/index.js",
"scripts": {
"test": "gulp test"
Expand Down

0 comments on commit e63aa61

Please sign in to comment.