feat(notifications): add retry with exponential backoff to send_webhook #155
No reviewers
Labels
No labels
Compat/Breaking
Kind/Bug
Kind/Documentation
Kind/Enhancement
Kind/Feature
Kind/Security
Kind/Testing
Priority
Critical
Priority
High
Priority
Low
Priority
Medium
Reviewed
Confirmed
Reviewed
Duplicate
Reviewed
Invalid
Reviewed
Won't Fix
Status
Abandoned
Status
Blocked
Status
Need More Info
No milestone
No project
No assignees
2 participants
Notifications
Due date
No due date set.
Dependencies
No dependencies set
Reference
thwap/kronai!155
Loading…
Reference in a new issue
No description provided.
Delete branch "fix/0120-webhook-retry"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
What
Add retry logic to
send_webhook: 3 attempts with 1s/2s/4s exponential backoff on HTTP 429 and 5xx responses.Why
Transient webhook failures were previously silently lost after a single attempt.
Testing
Closes #120
Automated Review — PR #155
Result: APPROVED
Clean addition — adds exponential backoff retry to
send_webhook(3 attempts, 1s/2s/4s). Retries on 429, 5xx, and connection errors. Non-retryable 4xx fail immediately. Pattern matches the existing LLM client retry loop. Closes #120.No suggestions.