Files
edx-platform/openedx/core/djangoapps/heartbeat/tasks.py
Awais Qureshi 39a22734c1 "Update routing config" (#25536)
* Revert "Revert "Update routing config"

* Removed settings from lms/celery.py and cms/celery.py

* Moved settings import from top-level to function's scopes

Co-authored-by: Soban Javed <iamsobanjaved@gmail.com>
2020-11-09 19:06:55 +05:00

12 lines
115 B
Python

"""
A trivial task for health checks
"""
from celery.task import task
@task
def sample_task():
return True