feat: more queue time?

This commit is contained in:
Nevo David 2025-08-04 18:14:49 +07:00
parent d5a53d8041
commit 4978d6b975
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ export async function concurrencyService<T>(
try {
load = await bottleneck
.key(identifier.split('-')[0])
.schedule<T>({ expiration: 60_000 }, async () => {
.schedule<T>({ expiration: 120_000 }, async () => {
return await func();
});
} catch (err) {}