We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93d884a commit 93db900Copy full SHA for 93db900
src/sentry_retry.c
@@ -67,6 +67,8 @@ sentry__retry_free(sentry_retry_t *retry)
67
uint64_t
68
sentry__retry_backoff(int count)
69
{
70
+ // TODO: consider adding jitter and shortening the poll interval to spread
71
+ // out retries when multiple envelopes (esp. large attachments) pile up.
72
return (uint64_t)SENTRY_RETRY_INTERVAL << MIN(MAX(count, 0), 5);
73
}
74
0 commit comments