From 70905c8aab73cf83a4d262413621a2a665387c16 Mon Sep 17 00:00:00 2001 From: Gregory Martin Date: Fri, 12 May 2017 10:58:47 -0400 Subject: [PATCH] compute grades task register https://openedx.atlassian.net/browse/EDUCATOR-388 --- cms/celery.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cms/celery.py b/cms/celery.py index 49f31fbfa0..3ea455b66f 100644 --- a/cms/celery.py +++ b/cms/celery.py @@ -34,4 +34,6 @@ class Router(AlternateEnvironmentRouter): return { 'openedx.core.djangoapps.content.block_structure.tasks.update_course_in_cache': 'lms', 'openedx.core.djangoapps.content.block_structure.tasks.update_course_in_cache_v2': 'lms', + 'openedx.core.djangoapps.grades.tasks.compute_grades_for_course': 'lms', + 'openedx.core.djangoapps.grades.tasks.compute_grades_for_course_v2': 'lms', }