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

Merge pull request #57722 from CaoShuFeng/finalizer

Automatic merge from submit-queue (batch tested with PRs 59882, 59434, 57722, 60320, 51249). 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>. [garbage collector] fix log info typo **Release note**: ```release-note NONE ```
parents 5a5af343 5c4ce2a6
...@@ -128,7 +128,7 @@ func (gc *GarbageCollector) removeFinalizer(owner *node, targetFinalizer string) ...@@ -128,7 +128,7 @@ func (gc *GarbageCollector) removeFinalizer(owner *node, targetFinalizer string)
newFinalizers = append(newFinalizers, f) newFinalizers = append(newFinalizers, f)
} }
if !found { if !found {
glog.V(5).Infof("the orphan finalizer is already removed from object %s", owner.identity) glog.V(5).Infof("the %s finalizer is already removed from object %s", targetFinalizer, owner.identity)
return nil return nil
} }
// remove the owner from dependent's OwnerReferences // remove the owner from dependent's OwnerReferences
......
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