From e50f64f7b5870efd89d7e2ffdfe29700a87ae847 Mon Sep 17 00:00:00 2001 From: automated-signal <37887102+automated-signal@users.noreply.github.com> Date: Tue, 3 Sep 2024 13:00:05 -0500 Subject: [PATCH] Reduce retries when deleting call links Co-authored-by: ayumi-signal <143036029+ayumi-signal@users.noreply.github.com> --- 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 ec43a307ca04..f159c9681f01 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, });