aws client: config.WithMaxRetries(8)

pull/6931/head
Adrien Delorme 8 years ago
parent f4fbf45349
commit 3f288fc6ca

@ -48,7 +48,8 @@ func (c *AccessConfig) Session() (*session.Session, error) {
}
// default is 3, and when it was causing failures for users being throttled
config = config.WithMaxRetries(20)
// retries are exponentially backed off.
config = config.WithMaxRetries(8)
region, err := c.region()
if err != nil {

Loading…
Cancel
Save