Skip to content
Snippets Groups Projects
Unverified Commit 7919418e authored by tateisu's avatar tateisu Committed by GitHub
Browse files

add S3_READ_TIMEOUT environment variable (#14952)

parent da10c5c7
No related branches found
No related tags found
No related merge requests found
......@@ -62,7 +62,7 @@ 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: 5,
http_read_timeout: ENV.fetch('S3_READ_TIMEOUT'){ '5' }.to_i,
http_idle_timeout: 5,
retry_limit: 0,
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment