From 4978d6b9757b4cfdafaac64d3ce4b4cc27541062 Mon Sep 17 00:00:00 2001 From: Nevo David Date: Mon, 4 Aug 2025 18:14:49 +0700 Subject: [PATCH] feat: more queue time? --- libraries/helpers/src/utils/concurrency.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/helpers/src/utils/concurrency.service.ts b/libraries/helpers/src/utils/concurrency.service.ts index 36c0f3fd..3881d492 100644 --- a/libraries/helpers/src/utils/concurrency.service.ts +++ b/libraries/helpers/src/utils/concurrency.service.ts @@ -19,7 +19,7 @@ export async function concurrencyService( try { load = await bottleneck .key(identifier.split('-')[0]) - .schedule({ expiration: 60_000 }, async () => { + .schedule({ expiration: 120_000 }, async () => { return await func(); }); } catch (err) {}