mirror of https://github.com/k3s-io/k3s
Merge pull request #40532 from MHBauer/log-typo
Automatic merge from submit-queue fix typo in logging statement **What this PR does / why we need it**: Typo fix in logs. I am writing an apiserver for service-catalog, and this annoys me when I see it in my logs. **Special notes for your reviewer**: Doc/text change only. No functional change. Feel free to combine with some existing PR. **Release note**: ```release-note NONE ```pull/6/head
commit
66bea1f86c
|
@ -809,7 +809,7 @@ func (e *Store) Delete(ctx genericapirequest.Context, name string, options *meta
|
|||
}
|
||||
|
||||
// delete immediately, or no graceful deletion supported
|
||||
glog.V(6).Infof("going to delete %s from regitry: ", name)
|
||||
glog.V(6).Infof("going to delete %s from registry: ", name)
|
||||
out = e.NewFunc()
|
||||
if err := e.Storage.Delete(ctx, key, out, &preconditions); err != nil {
|
||||
// Please refer to the place where we set ignoreNotFound for the reason
|
||||
|
|
Loading…
Reference in New Issue