diff --git a/common/lib/xmodule/xmodule/modulestore/django.py b/common/lib/xmodule/xmodule/modulestore/django.py index 6a7315a074..59668b4a5a 100644 --- a/common/lib/xmodule/xmodule/modulestore/django.py +++ b/common/lib/xmodule/xmodule/modulestore/django.py @@ -43,3 +43,7 @@ def modulestore(name='default'): ) return _MODULESTORES[name] + +# Initialize the modulestores immediately +for store_name in settings.MODULESTORE: + modulestore(store_name)