-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
🐛 Ensure returned informers are always correctly synced #371
🐛 Ensure returned informers are always correctly synced #371
Conversation
Thanks for your pull request. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA). 📝 Please follow instructions at https://git.k8s.io/community/CLA.md#the-contributor-license-agreement to sign the CLA. It may take a couple minutes for the CLA signature to be fully registered; after that, please reply here with a new comment and we'll verify. Thanks.
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. |
/assign @DirectXMan12 |
Fixes #370 |
I'm working on the contributor agreement. Stay tuned. We had previously signed with Google before things moved over to CNCF, so I just have to get a new signature. |
CNCF agreement is now signed. Should be ready for review. |
Changed my github primary email. Maybe that'll help... |
One more try. Logged into CNCF with github... |
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 think this tackles the case we care about satisfactorily. There's a bit of pseudo-UB if you fetch an informer while you're starting the cache, though.
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: DirectXMan12, nvachhar 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 |
A quick question for future contributions. What is pseudo-UB? I racked my brain trying to figure it out, but came up short... |
specificInformersMap.Get
may accidentally return an unsyncedInformer
(contained in the returnedMapEntry
). The condition occurs when 2 callers concurrently callGet
for the same GVK after thespecificInformersMap
has been started. The first won't find the GVK in the cache. It will add it and wait for the informer to sync. The second will find it in the cache and erroneously return it before it syncs.This patch guarantees that all returned informers are synced by checking before return.