Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "feat!: Update from boto to boto3 storage backend." #31801

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cms/djangoapps/cms_user_tasks/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"""
import json

import botocore
from boto.exception import NoAuthHandlerFound
from celery import shared_task
from celery.exceptions import MaxRetriesExceededError
from celery.utils.log import get_task_logger
Expand Down Expand Up @@ -52,7 +52,7 @@ def send_task_complete_email(self, task_name, task_state_text, dest_addr, detail
try:
mail.send_mail(subject, message, from_address, [dest_addr], fail_silently=False)
LOGGER.info("Task complete email has been sent to User %s", dest_addr)
except botocore.exceptions.ClientError:
except NoAuthHandlerFound:
LOGGER.info(
'Retrying sending email to user %s, attempt # %s of %s',
dest_addr,
Expand Down
10 changes: 3 additions & 7 deletions cms/djangoapps/cms_user_tasks/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
from unittest.mock import patch
from uuid import uuid4

import botocore
import ddt
from boto.exception import NoAuthHandlerFound
from django.conf import settings
from django.core import mail
from django.test import override_settings
Expand Down Expand Up @@ -303,9 +303,7 @@ def test_email_retries(self):
Make sure we can succeed on retries
"""
with mock.patch('django.core.mail.send_mail') as mock_exception:
mock_exception.side_effect = botocore.exceptions.ClientError(
{'error_response': 'error occurred'}, {'operation_name': 'test'}
)
mock_exception.side_effect = NoAuthHandlerFound()

with mock.patch('cms.djangoapps.cms_user_tasks.tasks.send_task_complete_email.retry') as mock_retry:
user_task_stopped.send(sender=UserTaskStatus, status=self.status)
Expand All @@ -317,9 +315,7 @@ def test_queue_email_failure(self):
logger.addHandler(hdlr)

with mock.patch('cms.djangoapps.cms_user_tasks.tasks.send_task_complete_email.delay') as mock_delay:
mock_delay.side_effect = botocore.exceptions.ClientError(
{'error_response': 'error occurred'}, {'operation_name': 'test'}
)
mock_delay.side_effect = NoAuthHandlerFound()
user_task_stopped.send(sender=UserTaskStatus, status=self.status)
self.assertTrue(mock_delay.called)
self.assertEqual(hdlr.messages['error'][0], 'Unable to queue send_task_complete_email')
4 changes: 2 additions & 2 deletions cms/djangoapps/contentstore/storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@

from django.conf import settings
from django.core.files.storage import get_storage_class
from storages.backends.s3boto3 import S3Boto3Storage
from storages.backends.s3boto import S3BotoStorage
from storages.utils import setting


class ImportExportS3Storage(S3Boto3Storage): # pylint: disable=abstract-method
class ImportExportS3Storage(S3BotoStorage): # pylint: disable=abstract-method
"""
S3 backend for course import and export OLX files.
"""
Expand Down
4 changes: 2 additions & 2 deletions cms/djangoapps/export_course_metadata/storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@

from django.conf import settings
from django.core.files.storage import get_storage_class
from storages.backends.s3boto3 import S3Boto3Storage
from storages.backends.s3boto import S3BotoStorage


class CourseMetadataExportS3Storage(S3Boto3Storage): # pylint: disable=abstract-method
class CourseMetadataExportS3Storage(S3BotoStorage): # pylint: disable=abstract-method
"""
S3 backend for course metadata export
"""
Expand Down
2 changes: 1 addition & 1 deletion cms/djangoapps/export_course_metadata/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ def export_course_metadata_task(self, course_key_string): # pylint: disable=unu
"""
course_key = CourseKey.from_string(course_key_string)
highlights = get_all_course_highlights(course_key)
highlights_content = ContentFile(json.dumps({'highlights': highlights}).encode('utf-8'))
highlights_content = ContentFile(json.dumps({'highlights': highlights}))
course_metadata_export_storage.save(f'course_metadata_export/{course_key}.json', highlights_content)
2 changes: 1 addition & 1 deletion cms/djangoapps/export_course_metadata/test_signals.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def test_happy_path(self, patched_content, patched_storage):
SignalHandler.course_published.connect(export_course_metadata)
SignalHandler.course_published.send(sender=None, course_key=self.course_key)
patched_content.assert_called_once_with(
b'{"highlights": [["week1highlight1", "week1highlight2"], ["week1highlight1", "week1highlight2"], [], []]}'
'{"highlights": [["week1highlight1", "week1highlight2"], ["week1highlight1", "week1highlight2"], [], []]}'
)
patched_storage.save.assert_called_once_with(
f'course_metadata_export/{self.course_key}.json', patched_content.return_value
Expand Down