Unverified Commit 5cf652d8 authored by Kubernetes Submit Queue's avatar Kubernetes Submit Queue Committed by GitHub

Merge pull request #60577 from timchenxiaoyu/fixpersist

Automatic merge from submit-queue (batch tested with PRs 58920, 58327, 60577, 49388, 62306). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. fix persist typo I wonder this pr should pull to kubernetes/kubernetes or kubernetes/client-go ? ``` NONE ```
parents 53fd4cd4 284d08bf
...@@ -279,7 +279,7 @@ func (p *oidcAuthProvider) idToken() (string, error) { ...@@ -279,7 +279,7 @@ func (p *oidcAuthProvider) idToken() (string, error) {
// Persist new config and if successful, update the in memory config. // Persist new config and if successful, update the in memory config.
if err = p.persister.Persist(newCfg); err != nil { if err = p.persister.Persist(newCfg); err != nil {
return "", fmt.Errorf("could not perist new tokens: %v", err) return "", fmt.Errorf("could not persist new tokens: %v", err)
} }
p.cfg = newCfg p.cfg = newCfg
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment