-
Notifications
You must be signed in to change notification settings - Fork 4.7k
UPSTREAM: 76455: More flake fixes in HPA legacy tests #22591
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
Conversation
@RobertKrawitz PTAL. Thanks! |
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.
I notice around line 529 there's a somewhat funky construct where it sends to the processed channel before setting tc.finished. Could you take a look at that also? That looks like a potential race condition itself.
It's reading from the chan (and ignoring what it reads), not writing to it. So it's waiting for at least one event to come through on the chan before proceeding. |
+1 |
/lgtm |
/lgtm cancel |
/retest |
Looks like the unit test was just an unrelated flake as suspected. And now we wait another 2 hours to see if we can get e2e-aws-serial to pass. |
/lgtm UT flakes aren't at all good, but there's no apparent connection between what failed and the test that this fixes. |
/approve |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: joelsmith, RobertKrawitz, sjenning 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 |
@joelsmith: The following test failed, say
Full PR test history. Your PR dashboard. Please help us cut down on flakes by linking to an open issue when you hit one in your PR. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. I understand the commands that are listed here. |
See kubernetes/kubernetes#76455
This is the second half of the fixes from the upstream PR. Hopefully it will take care of https://bugzilla.redhat.com/show_bug.cgi?id=1695326
(Here's the first half: #22531)