-
Notifications
You must be signed in to change notification settings - Fork 826
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add more more retries to htmltest #1861
Add more more retries to htmltest #1861
Conversation
Either we have way more links or Github is being more aggressive with it's 429 response to HTTP requests to check links. So adding lots more retries to this test, to account for this. We could potentially apply something like: https://medium.com/@davidstanke/make-a-cloud-build-step-that-always-succeeds-9d23290a2f4e long term if we want to always cache the htmltest link results even on failure of this step.
Build Succeeded 👏 Build Id: d1151f3e-64b2-4ce1-a6c1-eb531bd7292d The following development artifacts have been built, and will exist for the next 30 days:
A preview of the website (the last 30 builds are retained): To install this version:
|
I think the 429s might have been a red herring. I found a bad link after carefully scanning the list and once I fixed that the tests passed. |
This test did take 8 retries until it passed again.. so I'm not entirely sure it was.
Once it completed, the link cache was populated in GCS, so your PR's tests also passed, since it didn't have to hit Github. So maybe both? |
The fact that this PR got 7 failures doing link checking is definitely a different issue than I fixed. |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: markmandel, roberthbailey The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: markmandel, roberthbailey The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Build Succeeded 👏 Build Id: a598f626-bef2-4ee3-895a-c7412b776ffb The following development artifacts have been built, and will exist for the next 30 days:
A preview of the website (the last 30 builds are retained): To install this version:
|
Either we have way more links or Github is being more aggressive with it's 429 response to HTTP requests to check links. So adding lots more retries to this test, to account for this. We could potentially apply something like: https://medium.com/@davidstanke/make-a-cloud-build-step-that-always-succeeds-9d23290a2f4e long term if we want to always cache the htmltest link results even on failure of this step. Co-authored-by: Robert Bailey <robertbailey@google.com>
What type of PR is this?
/kind bug
What this PR does / Why we need it:
Either we have way more links or Github is being more aggressive with it's 429 response to HTTP requests to check links.
So adding lots more retries to this test, to account for this.
Which issue(s) this PR fixes:
N/A
Special notes for your reviewer:
We could potentially apply something like:
https://medium.com/@davidstanke/make-a-cloud-build-step-that-always-succeeds-9d23290a2f4e
long term if we want to always cache the htmltest link results even on
failure of this step.