fix typos in comment

Kubernetes-commit: 3e2932179084fa322ba1bc53997d44e1d383db00
This commit is contained in:
wq
2022-01-08 23:39:23 +09:00
committed by Kubernetes Publisher
parent 255c796513
commit 3480737c9e
2 changed files with 3 additions and 3 deletions

View File

@@ -370,8 +370,8 @@ type TransformFunc func(interface{}) (interface{}, error)
// the returned Store for Get/List operations; Add/Modify/Deletes will cause // the returned Store for Get/List operations; Add/Modify/Deletes will cause
// the event notifications to be faulty. // the event notifications to be faulty.
// The given transform function will be called on all objects before they will // The given transform function will be called on all objects before they will
// put put into the Store and corresponding Add/Modify/Delete handlers will // put into the Store and corresponding Add/Modify/Delete handlers will
// be invokved for them. // be invoked for them.
func NewTransformingInformer( func NewTransformingInformer(
lw ListerWatcher, lw ListerWatcher,
objType runtime.Object, objType runtime.Object,

View File

@@ -401,7 +401,7 @@ func (r *Reflector) ListAndWatch(stopCh <-chan struct{}) error {
timeoutSeconds := int64(minWatchTimeout.Seconds() * (rand.Float64() + 1.0)) timeoutSeconds := int64(minWatchTimeout.Seconds() * (rand.Float64() + 1.0))
options = metav1.ListOptions{ options = metav1.ListOptions{
ResourceVersion: resourceVersion, ResourceVersion: resourceVersion,
// We want to avoid situations of hanging watchers. Stop any wachers that do not // We want to avoid situations of hanging watchers. Stop any watchers that do not
// receive any events within the timeout window. // receive any events within the timeout window.
TimeoutSeconds: &timeoutSeconds, TimeoutSeconds: &timeoutSeconds,
// To reduce load on kube-apiserver on watch restarts, you may enable watch bookmarks. // To reduce load on kube-apiserver on watch restarts, you may enable watch bookmarks.