mirror of https://github.com/kubernetes/kops.git
Update addon.go
line 140: return nil, fmt.Errorf("error applying annotation to to record addon installation: %v", err)
I guess the word "to to" is duplicated here, isn't it?
This commit is contained in:
parent
cebc7017bc
commit
5e1a9315d3
|
|
@ -137,7 +137,7 @@ func (a *Addon) EnsureUpdated(k8sClient kubernetes.Interface) (*AddonUpdate, err
|
||||||
channel := a.buildChannel()
|
channel := a.buildChannel()
|
||||||
err = channel.SetInstalledVersion(k8sClient, a.ChannelVersion())
|
err = channel.SetInstalledVersion(k8sClient, a.ChannelVersion())
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, fmt.Errorf("error applying annotation to to record addon installation: %v", err)
|
return nil, fmt.Errorf("error applying annotation to record addon installation: %v", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
return required, nil
|
return required, nil
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue