From a1914f6d31f36b53d942e3ab03bcef83a70153dd Mon Sep 17 00:00:00 2001 From: Julia Eskew Date: Thu, 24 Jun 2021 16:41:03 -0400 Subject: [PATCH] fix: When running the task-creating task which regenerates all course outlines, continue instead of returning when an unsupported course key is encountered. --- cms/djangoapps/contentstore/tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cms/djangoapps/contentstore/tasks.py b/cms/djangoapps/contentstore/tasks.py index 9186ad7fd4..bf301808b4 100644 --- a/cms/djangoapps/contentstore/tasks.py +++ b/cms/djangoapps/contentstore/tasks.py @@ -685,7 +685,7 @@ def update_all_outlines_from_modulestore_task(): ), course_key_str ) - return + continue update_outline_from_modulestore_task.delay(course_key_str) except Exception: # pylint: disable=broad-except