This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## THIS IS UNTESTED | |
from worker.models import TaskType | |
from website.celery import app | |
import importlib | |
# Dynamically add registered tasks | |
# Celery._tasks is a task registry object | |
# https://github.com/celery/celery/blob/34c43244b1681a59540936748800aaa504786a35/celery/app/base.py#L162 - _tasks |