From 4f6d91af55be4b02bf1c8881cc6eee270d8e1487 Mon Sep 17 00:00:00 2001 From: Jeremy Lindblom Date: Sun, 15 Mar 2015 10:19:00 -0700 Subject: [PATCH] Adding 504 to retry list for CloudSearchDomain based on customer feedback. --- src/Aws/CloudSearchDomain/CloudSearchDomainClientBuilder.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Aws/CloudSearchDomain/CloudSearchDomainClientBuilder.php b/src/Aws/CloudSearchDomain/CloudSearchDomainClientBuilder.php index fe5326536a..9de513cf84 100644 --- a/src/Aws/CloudSearchDomain/CloudSearchDomainClientBuilder.php +++ b/src/Aws/CloudSearchDomain/CloudSearchDomainClientBuilder.php @@ -77,7 +77,7 @@ public function build() // Retry failed requests due to transient network or cURL problems new CurlBackoffStrategy(null, // Retry failed requests with 500-level responses - new HttpBackoffStrategy(array(500, 503, 509), + new HttpBackoffStrategy(array(500, 503, 504, 509), new ExponentialBackoffStrategy() ) )