Add timeouts for S3 (#9842)

This commit is contained in:
Eugen Rochko 2019-01-18 01:36:59 +01:00 committed by GitHub
parent 69f782b54d
commit 4699cf853c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -36,6 +36,9 @@ if ENV['S3_ENABLED'] == 'true'
}, },
s3_options: { s3_options: {
signature_version: ENV.fetch('S3_SIGNATURE_VERSION') { 'v4' }, signature_version: ENV.fetch('S3_SIGNATURE_VERSION') { 'v4' },
http_open_timeout: 5,
http_read_timeout: 5,
http_idle_timeout: 5,
} }
) )