Skip to content
Merged
Show file tree
Hide file tree
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: 2 additions & 1 deletion cms/envs/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -1067,7 +1067,8 @@
# Auto discover tasks fails to detect contentstore tasks
CELERY_IMPORTS = (
'cms.djangoapps.contentstore.tasks',
'openedx.core.djangoapps.bookmarks.tasks'
'openedx.core.djangoapps.bookmarks.tasks',
'openedx.core.djangoapps.ccxcon.tasks',
)

# Message configuration
Expand Down
2 changes: 1 addition & 1 deletion openedx/core/djangoapps/ccxcon/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
log = get_task_logger(__name__)


@task()
@task(name='openedx.core.djangoapps.ccxcon.tasks.update_ccxcon')
def update_ccxcon(course_id, cur_retry=0):
"""
Pass through function to update course information on CCXCon.
Expand Down