Reduce retries when deleting call links

Co-authored-by: ayumi-signal <143036029+ayumi-signal@users.noreply.github.com>
This commit is contained in:
automated-signal 2024-09-03 13:00:05 -05:00 committed by GitHub
parent f0667f12a4
commit e50f64f7b5
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,
});