You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If specificInformersMap is already started, a call to Get that doesn't find a particular GVK will create the corresponding Informer, add it to the map, and then wait for it to sync. Therefore the caller will get a synced Informer. However, if there is a concurrent caller to Get for the same GVK, it will find the Informer in the map and return it without waiting for it to sync. Therefore the concurrent caller will get an unsynced informer.
The text was updated successfully, but these errors were encountered:
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.
If
specificInformersMap
is already started, a call toGet
that doesn't find a particular GVK will create the corresponding Informer, add it to the map, and then wait for it to sync. Therefore the caller will get a synced Informer. However, if there is a concurrent caller to Get for the same GVK, it will find the Informer in the map and return it without waiting for it to sync. Therefore the concurrent caller will get an unsynced informer.The text was updated successfully, but these errors were encountered: