Merge pull request #21633 from open-craft/samuel/celery-fix

SE-1463 add djangoapps.heartbeat to INSTALLED_APPS by default
This commit is contained in:
David Ormsbee
2019-09-26 13:19:44 -04:00
committed by GitHub
2 changed files with 6 additions and 1 deletions

View File

@@ -1357,6 +1357,8 @@ INSTALLED_APPS = [
'openedx.features.discounts',
'experiments',
# so sample_task is available to celery workers
'openedx.core.djangoapps.heartbeat',
]

View File

@@ -2501,7 +2501,10 @@ INSTALLED_APPS = [
# edx-drf-extensions
'csrf.apps.CsrfAppConfig', # Enables frontend apps to retrieve CSRF tokens.
'xss_utils'
'xss_utils',
# so sample_task is available to celery workers
'openedx.core.djangoapps.heartbeat',
]
######################### CSRF #########################################