File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
core/aws-core/src/main/java/software/amazon/awssdk/awscore/internal Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -44,6 +44,7 @@ public final class AwsErrorCode {
44
44
throttlingErrorCodes .add ("BandwidthLimitExceeded" );
45
45
throttlingErrorCodes .add ("RequestThrottled" );
46
46
throttlingErrorCodes .add ("RequestThrottledException" );
47
+ throttlingErrorCodes .add ("LimitExceededException" );
47
48
THROTTLING_ERROR_CODES = unmodifiableSet (throttlingErrorCodes );
48
49
49
50
Set <String > definiteClockSkewErrorCodes = new HashSet <>(3 );
@@ -60,6 +61,8 @@ public final class AwsErrorCode {
60
61
61
62
Set <String > retryableErrorCodes = new HashSet <>(1 );
62
63
retryableErrorCodes .add ("PriorRequestNotComplete" );
64
+ retryableErrorCodes .add ("RequestTimeout" );
65
+ retryableErrorCodes .add ("RequestTimeoutException" );
63
66
RETRYABLE_ERROR_CODES = unmodifiableSet (retryableErrorCodes );
64
67
}
65
68
You can’t perform that action at this time.
0 commit comments