Commit 1b9c36be by Eric Fischer

Revert "Merge pull request #15229 from edx/efischer/celery_logging"

This reverts commit e64c3a35, reversing
changes made to 867fac31.
parent 01d7adf1
......@@ -210,11 +210,7 @@ class CourseGradeReport(object):
batched_rows = self._batched_rows(context)
context.update_status(u'Compiling grades')
try:
success_rows, error_rows = self._compile(context, batched_rows)
except Exception: # pylint:disable=broad-except
TASK_LOG.exception('Something failed in compilation')
return context.update_status('Failed grades')
success_rows, error_rows = self._compile(context, batched_rows)
context.update_status(u'Uploading grades')
self._upload(context, success_headers, success_rows, error_headers, error_rows)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment