Timeout settings are now merged instead of replaced #3408
rcoh
announced in
Change Log
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Fix bug where setting
TimeoutSettings
would completely replace other timeout settings. Prior to this change, if aCONNECT
timeout was set, for example, setting anoperation_timeout
would ignore this previously configured value.This change will merge individual timeout settings. To disable a specific timeout, use
TimeoutConfig::disabled
orTimeoutConfigBuilder::disable_<xyz>
.This will cause a behavior change for customers who set custom timeout settings in combination with
aws_config
.aws-config
provides a default connect timeout of 3.1s.A 3.1 second connect timeout is generally a best practice for non-mobile environments so this change should not be noticeable by most customers.
Beta Was this translation helpful? Give feedback.
All reactions