Commit 66bea1f8 authored by Kubernetes Submit Queue's avatar Kubernetes Submit Queue Committed by GitHub

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 ```
parents a3f8ee65 32ec6bc5
......@@ -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
......
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