From 145d48d104283c2a5594794956b8b86802292284 Mon Sep 17 00:00:00 2001 From: ayumi-signal <143036029+ayumi-signal@users.noreply.github.com> Date: Tue, 3 Sep 2024 09:42:26 -0700 Subject: [PATCH] Reduce retries when deleting call links --- ts/jobs/callLinksDeleteJobQueue.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ts/jobs/callLinksDeleteJobQueue.ts b/ts/jobs/callLinksDeleteJobQueue.ts index ec43a307ca..f159c9681f 100644 --- a/ts/jobs/callLinksDeleteJobQueue.ts +++ b/ts/jobs/callLinksDeleteJobQueue.ts @@ -66,5 +66,5 @@ export class CallLinksDeleteJobQueue extends JobQueue { export const callLinksDeleteJobQueue = new CallLinksDeleteJobQueue({ store: jobQueueDatabaseStore, queueType: 'callLinksDelete', - maxAttempts: 25, + maxAttempts: 5, });