Skip to content

Commit

Permalink
test additional retry codes (#1832)
Browse files Browse the repository at this point in the history
  • Loading branch information
Chase Coalwell committed Jun 28, 2019
1 parent 2f6b31b commit be04607
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/RetryMiddlewareTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,9 @@ public function awsErrorCodeProvider()
[new AwsException('e', $command, ['code' => 'ThrottlingException'])],
[new AwsException('e', $command, ['code' => 'ProvisionedThroughputExceededException'])],
[new AwsException('e', $command, ['code' => 'RequestThrottled'])],
[new AwsException('e', $command, ['code' => 'BandwidthLimitExceeded'])]
[new AwsException('e', $command, ['code' => 'BandwidthLimitExceeded'])],
[new AwsException('e', $command, ['code' => 'RequestThrottledException'])],
[new AwsException('e', $command, ['code' => 'TooManyRequestsException'])]
];
}
/**
Expand Down

0 comments on commit be04607

Please sign in to comment.