mirror of
https://github.com/catdevnull/transicion-desordenada-diablo
synced 2024-11-15 02:21:39 +00:00
reintentar cada más tiempo en ratelimit
This commit is contained in:
parent
5aca382027
commit
eb18951686
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ export async function customRequestWithLimitsAndRetries(url, attempts = 0) {
|
||||||
) {
|
) {
|
||||||
if (REPORT_RETRIES)
|
if (REPORT_RETRIES)
|
||||||
console.debug(`reintentando(status)[${attempts}] ${url.toString()}`);
|
console.debug(`reintentando(status)[${attempts}] ${url.toString()}`);
|
||||||
await wait(15000 + Math.random() * 10000);
|
await wait(1000 * (attempts + 1) ** 2 + Math.random() * 10000);
|
||||||
return await customRequestWithLimitsAndRetries(url, attempts + 1);
|
return await customRequestWithLimitsAndRetries(url, attempts + 1);
|
||||||
}
|
}
|
||||||
// si no fue un error de http, reintentar hasta 3 veces con ~10 segundos de por medio
|
// si no fue un error de http, reintentar hasta 3 veces con ~10 segundos de por medio
|
||||||
|
|
Loading…
Reference in a new issue