Skip to content

Commit 1f72712

Browse files
committed
Update DDB default max retry count to 8
1 parent f20161b commit 1f72712

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"category": "Amazon DynamoDB",
3+
"type": "feature",
4+
"description": "Update DynamoDB default max retry count to 8. Related to [#431](https://github.com/aws/aws-sdk-java-v2/issues/431)"
5+
}

services/dynamodb/src/main/java/software/amazon/awssdk/services/dynamodb/DynamoDbRetryPolicy.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
public final class DynamoDbRetryPolicy {
3131

3232
/** Default max retry count for DynamoDB client **/
33-
private static final int DEFAULT_MAX_ERROR_RETRY = 10;
33+
private static final int DEFAULT_MAX_ERROR_RETRY = 8;
3434

3535
/**
3636
* Default base sleep time for DynamoDB.

0 commit comments

Comments
 (0)