mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-08 08:44:27 +00:00
Change S3 checksum mode to be disabled by default (#27007)
This commit is contained in:
parent
bb6c59a399
commit
8acc75435b
|
@ -91,7 +91,6 @@ if ENV['S3_ENABLED'] == 'true'
|
|||
# Some S3-compatible providers might not actually be compatible with some APIs
|
||||
# used by kt-paperclip, see https://github.com/mastodon/mastodon/issues/16822
|
||||
# and https://github.com/mastodon/mastodon/issues/26394
|
||||
if ENV['S3_FORCE_SINGLE_REQUEST'] == 'true' || ENV['S3_DISABLE_CHECKSUM_MODE'] == 'true'
|
||||
module Paperclip
|
||||
module Storage
|
||||
module S3Extensions
|
||||
|
@ -100,7 +99,7 @@ if ENV['S3_ENABLED'] == 'true'
|
|||
|
||||
options = {}
|
||||
options[:mode] = 'single_request' if ENV['S3_FORCE_SINGLE_REQUEST'] == 'true'
|
||||
options[:checksum_mode] = 'DISABLED' if ENV['S3_DISABLE_CHECKSUM_MODE'] == 'true'
|
||||
options[:checksum_mode] = 'DISABLED' unless ENV['S3_ENABLE_CHECKSUM_MODE'] == 'true'
|
||||
|
||||
s3_object(style).download_file(local_dest_path, options)
|
||||
rescue Aws::Errors::ServiceError => e
|
||||
|
@ -112,7 +111,6 @@ if ENV['S3_ENABLED'] == 'true'
|
|||
end
|
||||
|
||||
Paperclip::Storage::S3.prepend(Paperclip::Storage::S3Extensions)
|
||||
end
|
||||
elsif ENV['SWIFT_ENABLED'] == 'true'
|
||||
require 'fog/openstack'
|
||||
|
||||
|
|
Loading…
Reference in a new issue