Skip to content
Discussion options

You must be logged in to vote

Hi! Based on my light investigation, I observed the following:

[1] pry(Aws)> client = Aws::S3::Client.new
=> #<Aws::S3::Client>
[2] pry(Aws)> client.config.http_open_timeout
=> 15
[3] pry(Aws)> client.put_object({bucket: 'some-bucket', key: "foo", body: 'bar'})
Session open timeout is: 15
[Aws::S3::Client 200 0.200642 0 retries] put_object(bucket:"some-bucket",key:"foo",body:"bar",checksum_algorithm:"CRC32")  
=> #<struct Aws::S3::Types::PutObjectOutput ... 
[4] pry(Aws)> client.config.http_open_timeout=10
[4] pry(Aws)> client.put_object({bucket: 'some-bucket', key: "foo", body: 'bar'})
Session open timeout is: 10
[Aws::S3::Client 200 0.165705 0 retries] put_object(bucket:"some-bucket",key:

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@ClearlyClaire
Comment options

Answer selected by ClearlyClaire
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants