Skip to content

Commit

Permalink
Fix config
Browse files Browse the repository at this point in the history
  • Loading branch information
raphodn committed Aug 27, 2024
1 parent 7b5e238 commit eaccb61
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config/settings/prod.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
MEDIA_URL = f"https://{S3_STORAGE_ENDPOINT_DOMAIN}/" # noqa

# flake8: noqa F405
STORAGES |= {"default": {"BACKEND": "storages.backends.s3.S3Storage"}}
STORAGES |= {"default": {"BACKEND": "lemarche.utils.s3boto.S3BotoStorage"}}


# Sentry
Expand Down
2 changes: 1 addition & 1 deletion config/settings/staging.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
MEDIA_URL = f"https://{S3_STORAGE_ENDPOINT_DOMAIN}/" # noqa

# flake8: noqa F405
STORAGES |= {"default": {"BACKEND": "storages.backends.s3.S3Storage"}}
STORAGES |= {"default": {"BACKEND": "lemarche.utils.s3boto.S3BotoStorage"}}


# Sentry
Expand Down

0 comments on commit eaccb61

Please sign in to comment.