File tree Expand file tree Collapse file tree
tutor/templates/jobs/init Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -13,11 +13,11 @@ if [ -d /openedx/data/uploads/ ]; then
1313 fi
1414fi
1515
16- # Create the index for studio and courseware content. Because we specify --init,
17- # this will not populate the index (potentially slow) nor replace any existing
18- # index (resulting in broken features until it is complete). If either of those
19- # are necessary, it will print instructions on what command to run to do so .
20- ./manage.py cms reindex_studio --experimental --init
16+ # Schedule Studio search index population. Index creation and configuration
17+ # are already handled by the post_migrate signal during `cms migrate` above;
18+ # this enqueues a Celery task that cms-worker consumes to populate the index
19+ # incrementally in the background .
20+ ./manage.py cms reindex_studio
2121# Create the courseware content index
2222./manage.py cms reindex_course --active
2323
You can’t perform that action at this time.
0 commit comments