Lower retry limit for timeouts #238
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
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?
If a page maxes out the timeout limit on every single retry, it can wind up taking a very very long time just for that one request. But really it seems like if one page has timed out more than a few times in a row you can predict with reasonable confidence that it's just going to keep doing that, so continuing to retry is just wasting time (a LOT of time). Special-casing timeout errors so that they can cut off the retry process early under certain circumstances seems worth investigation.