-
Notifications
You must be signed in to change notification settings - Fork 926
Update the default retry strategy to standard from legacy #6294
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
752df9c
to
444d09e
Compare
} | ||
|
||
@Test | ||
void listTables_whenUsingDefaultRetryMode_shouldAttempt9Times(WireMockRuntimeInfo wm) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Isn't this test exactly identical to listTables_whenNoRetryPolicySet_shouldAttempt9Times
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
|
Motivation and Context
This change updates the default retry strategy from LEGACY to STANDARD mode as part of modernizing AWS SDK defaults. This aligns with the AWS blog post "Modernizing the default retry strategy" which recommends moving to the STANDARD retry mode for improved reliability and performance.
Modifications
SDK_DEFAULT_RETRY_MODE
fromLEGACY
toSTANDARD
inRetryMode.java
Testing
Updated tests to reflect the default change from LEGACY to STANDARD retry mode:
Screenshots (if appropriate)
Types of changes
License