From f7d85f327bf56f29721c1af93c17bec3976072a9 Mon Sep 17 00:00:00 2001 From: Juan Enrique Alcaraz Date: Tue, 2 May 2023 18:31:32 +0200 Subject: [PATCH] Increase to 30 attemps --- src/common/loop.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/loop.js b/src/common/loop.js index e2b5cb26..e7889b0a 100644 --- a/src/common/loop.js +++ b/src/common/loop.js @@ -3,7 +3,7 @@ import CoreError, { ErrorCodes } from '~/common/error'; export default async function loop( request, condition, - { label, maxAttempts = 10, retryDelay = 6000 } = {}, + { label, maxAttempts = 30, retryDelay = 6000 } = {}, ) { return new Promise((resolve, reject) => { let attempt = 0;