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

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,
});