Skip to content

Commit

Permalink
Merge pull request #823 from edx/alangsto/lower_ping_interval
Browse files Browse the repository at this point in the history
Lower ping interval from 120 to 30 seconds
  • Loading branch information
alangsto authored Mar 30, 2021
2 parents 549d5ca + e279fd0 commit 3aaff00
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 @@ -14,6 +14,10 @@ Change Log
Unreleased
~~~~~~~~~~

[3.7.16] - 2021-03-30
~~~~~~~~~~~~~~~~~~~~~
* Reduce time for ping interval from 120 to 30 seconds.

[3.7.15] - 2021-03-24
~~~~~~~~~~~~~~~~~~~~~
* Improved learner messaging on onboarding panel and submitted interstitial.
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.7.15'
__version__ = '3.7.16'

default_app_config = 'edx_proctoring.apps.EdxProctoringConfig' # pylint: disable=invalid-name
2 changes: 1 addition & 1 deletion edx_proctoring/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,6 @@

MINIMUM_TIME = datetime.datetime.fromtimestamp(0)

DEFAULT_DESKTOP_APPLICATION_PING_INTERVAL_SECONDS = 120
DEFAULT_DESKTOP_APPLICATION_PING_INTERVAL_SECONDS = 30

PING_FAILURE_PASSTHROUGH_TEMPLATE = 'edx_proctoring.{}_ping_failure_passthrough'
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@edx/edx-proctoring",
"//": "Be sure to update the version number in edx_proctoring/__init__.py",
"//": "Note that the version format is slightly different than that of the Python version when using prereleases.",
"version": "3.7.15",
"version": "3.7.16",
"main": "edx_proctoring/static/index.js",
"scripts":{
"test":"gulp test"
Expand Down

0 comments on commit 3aaff00

Please sign in to comment.