contentful-sdk-core
Advanced tools
Comparing version 2.4.0 to 2.5.0
{ | ||
"name": "contentful-sdk-core", | ||
"version": "2.4.0", | ||
"version": "2.5.0", | ||
"description": "Core modules for the Contentful JS SDKs", | ||
@@ -5,0 +5,0 @@ "homepage": "https://www.contentful.com/developers/docs/javascript/", |
@@ -67,3 +67,3 @@ 'use strict'; | ||
// Rate-limited by the server, maybe backoff and retry | ||
if (error.status === 429) { | ||
if (error.status === 429 || error.status >= 500) { | ||
return self.backoff(error, function () { | ||
@@ -70,0 +70,0 @@ return httpCall.apply(self, args); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
84212