Skip to content

Commit 5c0584d

Browse files
eabdelmoneimclaude
andcommitted
Reduce webhook retry attempts from 8 to 5
- Changes webhook delivery attempts from 8 to 5 - Keeps exponential backoff with 5-second base delay - Total retry window: ~1 minute 15 seconds - Balances resilience with resource efficiency Timeline: - Attempt 1: 0s - Attempt 2: +5s (5s total) - Attempt 3: +10s (15s total) - Attempt 4: +20s (35s total) - Attempt 5: +40s (1m 15s total) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 1a11cd2 commit 5c0584d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/worker/queues/send-webhook-queue.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ export class SendWebhookQueue {
5959
connection: redis,
6060
defaultJobOptions: {
6161
...defaultJobOptions,
62-
attempts: 8,
62+
attempts: 5,
6363
backoff: { type: "exponential", delay: 5_000 },
6464
},
6565
});

0 commit comments

Comments
 (0)