Skip to content

Release Notes 2014 06 23 merge

stv edited this page Jul 12, 2018 · 1 revision

Release head

f0a1198

Merge

2e36fb2

Cherry-picks

Commit Date Subject
c2bce25 2014-06-23 Add theming to dashboard, about, register pages
b121a15 2014-05-23 fix metrics tab

Configuration

Run Django migrations for cms/lms.

Mongo index changes:

db.location_map.ensureIndex({'org': 1, 'offering': 1}, {'background':true});
db.location_map.ensureIndex({'schema': 1}, {'background':true});

db.modulestore.ensureIndex({'_id.category': 1}, {'background':true});
db.modulestore.ensureIndex({'_id.tag': 1, '_id.org': 1, '_id.course': 1, 'definition.children': 1}, {'background':true});

db.fs.files.ensureIndex({'_id.tag': 1, '_id.org': 1, '_id.course': 1, '_id.category': 1}, {'background':true});
db.modulestore.active_versions.ensureIndex({'org': 1, 'offering': 1}, {'background':true});
db.modulestore.structures.ensureIndex({'previous_version': 1}, {'background':true});
db.modulestore.definitions.ensureIndex({'category': 1}, {'background':true});

Hotfix 1 - Fix Shib login

Release head

9513df1

Cherry-picks

Commit Date Subject
b89fcec 2014-06-27 Hotfix course_specific_reg/login for OpaqueKeys

Hotfix 2 - Forum Upgrade and Search Reindex

30-June-2014, Sef

Problem, 500's on new users, couldn't access Forum. Found to be new code that was causing an API incompatibility btw. current code and comment service.

The fix was first, to push master of forum to stage and prod. c4f5a1f2b3 4-June. Then we ran these two commands to recreate elasticsearch indexes

   heroku run rake search:create_index --app=stanford-edx-forums-stage
   heroku run rake search:rebuild --app=stanford-edx-forums-stage

Changes made to stage, prod, carnegie, and CME in that order.

Clone this wiki locally