From bda2a793ac26cf9f3f7d4b130226f82e089d8080 Mon Sep 17 00:00:00 2001 From: Nimisha Asthagiri Date: Fri, 3 Mar 2017 11:42:52 -0500 Subject: [PATCH] Increment BlockStructureBlockData.VERSION --- .../core/djangoapps/content/block_structure/block_structure.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openedx/core/djangoapps/content/block_structure/block_structure.py b/openedx/core/djangoapps/content/block_structure/block_structure.py index 80f32bdc52..04a823c442 100644 --- a/openedx/core/djangoapps/content/block_structure/block_structure.py +++ b/openedx/core/djangoapps/content/block_structure/block_structure.py @@ -401,7 +401,7 @@ class BlockStructureBlockData(BlockStructure): # update this value whenever the data structure changes. Dependent storage # layers can then use this value when serializing/deserializing block # structures, and invalidating any previously cached/stored data. - VERSION = 1 + VERSION = 2 def __init__(self, root_block_usage_key): super(BlockStructureBlockData, self).__init__(root_block_usage_key)