From 3ebf286026e8910d75732b31f2f81eef8e5ea487 Mon Sep 17 00:00:00 2001 From: Feanil Patel Date: Tue, 24 Sep 2024 09:58:01 -0400 Subject: [PATCH] fixup! feat!: Drop the block_structure.storage_backing_for_cache waffle switch. --- openedx/core/djangoapps/content/block_structure/tasks.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/openedx/core/djangoapps/content/block_structure/tasks.py b/openedx/core/djangoapps/content/block_structure/tasks.py index 26b8ecad0759..5796b8167b2b 100644 --- a/openedx/core/djangoapps/content/block_structure/tasks.py +++ b/openedx/core/djangoapps/content/block_structure/tasks.py @@ -42,8 +42,6 @@ def update_course_in_cache_v2(self, **kwargs): Updates the course blocks (mongo -> BlockStructure) for the specified course. Keyword Arguments: course_id (string) - The string serialized value of the course key. - with_storage (boolean) - Whether or not storage backing should be - enabled for the generated block structure(s). """ _update_course_in_cache(self, **kwargs) @@ -71,8 +69,6 @@ def get_course_in_cache_v2(self, **kwargs): Gets the course blocks for the specified course, updating the cache if needed. Keyword Arguments: course_id (string) - The string serialized value of the course key. - with_storage (boolean) - Whether or not storage backing should be - enabled for any generated block structure(s). """ _get_course_in_cache(self, **kwargs)