You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
idle_timeout stops pooled connections from being reused when they've been sitting idle for too long (in which case the server has probably already dropped the other end of the connection).
It seems that there isn't a one-size-fits-all idle_timeout for AWS services. IAM seems to process requests on a connection that has been idle for up to about 50 seconds, but S3 connections seem to become unusable after about 5 seconds.
The text was updated successfully, but these errors were encountered:
Note that the idle_timeout= change to GitHub.jl is still desirable because there is a race-condition when a request is sent on an idle connection at the same moment that the server decides to send close_notify and drop the connection.
idle_timeout
stops pooled connections from being reused when they've been sitting idle for too long (in which case the server has probably already dropped the other end of the connection).It seems that there isn't a one-size-fits-all
idle_timeout
for AWS services. IAM seems to process requests on a connection that has been idle for up to about 50 seconds, but S3 connections seem to become unusable after about 5 seconds.The text was updated successfully, but these errors were encountered: