-
-
Notifications
You must be signed in to change notification settings - Fork 607
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
ra: temporarily remove flaky test #7820
Conversation
This test is flaking a lot on main. We'll restore it soon but in the meantime we shouldn't have flaky tests.
Got an integration test failure:
I suspect this is also a flake and I'm re-running that CI task now. |
I think the fix is to make this call synchronous: Line 1361 in 2502113
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Similarly to what I've noted on countCertificateIssued. I think the fix for this is to make countValidationsFailed synchronous:
Lines 2001 to 2006 in 2502113
go func() { | |
err := ra.countFailedValidations(vaCtx, authz.RegistrationID, authz.Identifier) | |
if err != nil { | |
ra.log.Warningf("incrementing failed validations: %s", err) | |
} | |
}() |
Ooh excellent catch! I'll try that instead. |
I would sign off on fixing both in this PR 👍🏻 |
As we discussed offline, closing in favour of: #7824 |
This test is flaking a lot on main. We'll restore it soon but in the meantime we shouldn't have flaky tests.
We'll use #7812 to track re-adding this test.