Retry S3 requests on 500 or 503 in addition to interruption
And adjust S3 success/backoff counters on success
This commit is contained in:
parent
ab9330d88e
commit
ec28c5a35d
1 changed files with 8 additions and 1 deletions
|
@ -869,7 +869,7 @@ Zotero.Sync.Storage.ZFS = (function () {
|
|||
return;
|
||||
}
|
||||
|
||||
if (status == 0) {
|
||||
if (status == 0 || status == 500 || status == 503) {
|
||||
if (_s3ConsecutiveFailures >= _maxS3ConsecutiveFailures) {
|
||||
Zotero.debug(_s3ConsecutiveFailures
|
||||
+ " consecutive S3 failures -- aborting", 1);
|
||||
|
@ -921,6 +921,13 @@ Zotero.Sync.Storage.ZFS = (function () {
|
|||
|
||||
Zotero.debug("Finished download of " + destFile.path);
|
||||
|
||||
// Decrease backoff delay on successful download
|
||||
if (_s3Backoff > 1) {
|
||||
_s3Backoff /= 2;
|
||||
}
|
||||
// And reset consecutive failures
|
||||
_s3ConsecutiveFailures = 0;
|
||||
|
||||
try {
|
||||
deferred.resolve(Zotero.Sync.Storage.processDownload(data));
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue