Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions superset/tasks/celery_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@
flask_app = create_app()

# Need to import late, as the celery_app will have been setup by "create_app()"
# ruff: noqa: E402, F401
# pylint: disable=wrong-import-position, unused-import
from . import cache, scheduler

# Export the celery app globally for Celery (as run on the cmd line) to find
app = celery_app
Expand Down
Loading