Skip to content

phabricator: Retry up to 6 times, with 15 s wait - #116

Merged
marco-c merged 1 commit into
mozilla:masterfrom
marco-c:phabretry
Aug 4, 2025
Merged

marco-c merged 1 commit into
mozilla:masterfrom
marco-c:phabretry

Conversation

@marco-c

@marco-c marco-c commented Aug 4, 2025

Copy link
Copy Markdown
Collaborator

Fixes #93

We were previously waiting:
2^0 * 10 = 10s
2^1 * 10 = 20s
2^2 * 10 = 40s
2^3 * 10 = 80s
2^4 * 10 = 160s
for a total of 310 seconds (slightly more than 5 minutes)

We are now going to wait:
2^0 * 15 = 15s
2^1 * 15 = 30s
2^2 * 15 = 60s
2^3 * 15 = 120s
2^4 * 15 = 240s
2^5 * 15 = 480s
for a total of 945 seconds (almost 16 minutes)

@marco-c
marco-c requested a review from Archaeopteryx August 4, 2025 10:00
@marco-c marco-c changed the title phabricator: Retry up to 5 times, with 15 s wait phabricator: Retry up to 6 times, with 15 s wait Aug 4, 2025
@marco-c
marco-c merged commit f73c550 into mozilla:master Aug 4, 2025
@marco-c
marco-c deleted the phabretry branch August 4, 2025 14:01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Increase the wait time when retrying connection to Phabricator

2 participants