* 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>
12 lines
115 B
Python
12 lines
115 B
Python
"""
|
|
A trivial task for health checks
|
|
"""
|
|
|
|
|
|
from celery.task import task
|
|
|
|
|
|
@task
|
|
def sample_task():
|
|
return True
|