Fix typo in pkg/kubelet/pluginmanager/cache/actual_state_of_world

Signed-off-by: Carlos Eduardo Arango Gutierrez <carangog@redhat.com>
This commit is contained in:
Carlos Eduardo Arango Gutierrez 2022-02-24 16:20:24 -05:00
parent 673fa1d9d4
commit bbb8ef1d10
No known key found for this signature in database
GPG Key ID: A9596BE502663DFD

View File

@ -43,7 +43,7 @@ type ActualStateOfWorld interface {
// Note that this is different from desired world cache's AddOrUpdatePlugin
// because for the actual state of world cache, there won't be a scenario where
// we need to update an existing plugin if the timestamps don't match. This is
// because the plugin should have been unregistered in the reconciller and therefore
// because the plugin should have been unregistered in the reconciler and therefore
// removed from the actual state of world cache first before adding it back into
// the actual state of world cache again with the new timestamp
AddPlugin(pluginInfo PluginInfo) error