No max attempt

This commit is contained in:
Andras Schmelczer 2025-03-15 09:24:54 +00:00
parent f894cd6bd8
commit 408afa3626
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
3 changed files with 3 additions and 2 deletions

View file

@ -6737,6 +6737,7 @@
"ts-loader": "^9.5.2",
"tslib": "2.8.1",
"typescript": "5.7.3",
"uuid": "^11.1.0",
"webpack": "^5.98.0",
"webpack-cli": "^6.0.1"
}

View file

@ -12,6 +12,7 @@
"devDependencies": {
"tslib": "2.8.1",
"typescript": "5.7.3",
"uuid": "^11.1.0",
"sync_lib": "file:../../backend/sync_lib/pkg",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.5",
@ -26,4 +27,4 @@
"webpack": "^5.98.0",
"webpack-cli": "^6.0.1"
}
}
}

View file

@ -31,7 +31,6 @@ export function retriedFetchFactory(
}
return false;
},
retries: 6,
retryDelay: (attempt) => Math.pow(1.5, attempt) * 500,
...init
});