Add retries for webhook fails at conformance tests#4045
Conversation
|
The following jobs failed:
Failed non-flaky tests preventing automatic retry of pull-knative-eventing-conformance-tests: |
| } | ||
| return err | ||
| }) | ||
| if err != nil { |
There was a problem hiding this comment.
After retrying we sometimes got an already exists error, can you add a check for that?
Lines 81 to 92 in c5fabfd
| if err != nil { | |
| if err != nil && !apierrors.IsAlreadyExists(err) { |
The same applies for the others below.
There was a problem hiding this comment.
I only added retries for GET operations and I don't think we would get that error in this case.
And, all the other operations already have retries.
Let me know what you think @pierDipi
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: aliok, matzew The full list of commands accepted by this bot can be found here. The pull request process is described here DetailsNeeds approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Fixes #3952
Proposed Changes
Release Note
Docs