Merge pull request #19022 from edx/ormsbee/fix_ccx_data_migration

Remove course publish from CCX data migration.
This commit is contained in:
David Ormsbee
2019-02-06 12:04:53 -05:00
committed by GitHub

View File

@@ -10,7 +10,6 @@ import logging
from ccx_keys.locator import CCXLocator
from courseware.courses import get_course_by_id
from xmodule.modulestore.django import SignalHandler
log = logging.getLogger(__name__)
@@ -49,19 +48,6 @@ def save_display_name(apps, schema_editor):
defaults={'value': serialized_display_name},
)
# Publish change
responses = SignalHandler.course_published.send(
sender=ccx,
course_key=CCXLocator.from_course_locator(course.id, unicode(ccx.id))
)
for rec, response in responses:
log.info(
'Signal fired when course is published. Course %s. Receiver: %s. Response: %s',
ccx.course_id,
rec,
response
)
class Migration(migrations.Migration):