Reduce retries when deleting call links

This commit is contained in:
ayumi-signal 2024-09-03 09:42:26 -07:00 committed by GitHub
parent c3d45264a7
commit 145d48d104
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -66,5 +66,5 @@ export class CallLinksDeleteJobQueue extends JobQueue<CallLinksDeleteJobData> {
export const callLinksDeleteJobQueue = new CallLinksDeleteJobQueue({
store: jobQueueDatabaseStore,
queueType: 'callLinksDelete',
maxAttempts: 25,
maxAttempts: 5,
});