Merge pull request #100406 from tomkukral/retry-doc

fix typo in retry doc

Kubernetes-commit: bf22025950c0af15f3bbf92f3ff085dbe5b087a7
This commit is contained in:
Kubernetes Publisher 2021-08-04 18:58:50 -07:00
commit 3c86d4a920

View File

@ -79,7 +79,7 @@ func OnError(backoff wait.Backoff, retriable func(error) bool, fn func() error)
// // if you got a conflict on the last update attempt then you need to get
// // the current version before making your own changes.
// pod, err := c.Pods("mynamespace").Get(name, metav1.GetOptions{})
// if err ! nil {
// if err != nil {
// return err
// }
//