Fix — March 20, 2026
The problem
Some webhook deliveries were failing silently after the first attempt. The retry mechanism was not respecting the configured backoff strategy, leading to missed notifications for CI/CD integrations.The fix
We updated the retry logic to properly implement exponential backoff with jitter. Failed webhook deliveries are now retried up to 5 times, with delays that increase exponentially between attempts to avoid thundering-herd issues on your endpoint. What changed:- Up to 5 automatic retries per failed delivery (previously 0 after the first failure)
- Exponential backoff with jitter between retries
- Failed deliveries that exhaust all retries are now logged and visible in your Autter dashboard
