Compare commits

...

7 Commits

Author SHA1 Message Date
Shlee
b1f7df4321
Merge 6f019e013f into 94bceb8683 2025-07-11 14:03:35 +00:00
Shlee
6f019e013f
Merge branch 'main' into patch-7 2024-11-22 14:57:58 +00:00
Shlee
70e54bbac4
Update paperclip.rb 2024-06-19 01:53:13 +09:30
Shlee
73e983ff66
Update paperclip.rb 2024-06-11 13:45:58 +09:30
Shlee
ea1bbb5b22
Update paperclip.rb 2024-06-09 18:45:46 +09:30
Shlee
dbc728d94c
Update paperclip.rb 2024-06-08 16:37:33 +09:30
Shlee
aa6412af20
Increase paperclip S3 timeouts 2024-06-08 16:35:24 +09:30

View File

@ -65,10 +65,10 @@ if ENV['S3_ENABLED'] == 'true'
s3_options: {
signature_version: ENV.fetch('S3_SIGNATURE_VERSION') { 'v4' },
http_open_timeout: ENV.fetch('S3_OPEN_TIMEOUT') { '5' }.to_i,
http_read_timeout: ENV.fetch('S3_READ_TIMEOUT') { '5' }.to_i,
http_open_timeout: ENV.fetch('S3_OPEN_TIMEOUT') { '15' }.to_i,
http_read_timeout: ENV.fetch('S3_READ_TIMEOUT') { '15' }.to_i,
http_idle_timeout: 5,
retry_limit: ENV.fetch('S3_RETRY_LIMIT') { '0' }.to_i,
retry_limit: ENV.fetch('S3_RETRY_LIMIT') { '1' }.to_i,
}
)