Unverified Commit 30a06af4 authored by k8s-ci-robot's avatar k8s-ci-robot Committed by GitHub

Merge pull request #69671 from mooncak/fix_kubelet

Delete duplicated words in logs
parents 897b3a9f 1e6602d6
......@@ -240,7 +240,7 @@ func (m *managerImpl) synchronize(diskInfoProvider DiskInfoProvider, podFunc Act
updateStats := true
summary, err := m.summaryProvider.Get(updateStats)
if err != nil {
glog.Errorf("eviction manager: failed to get get summary stats: %v", err)
glog.Errorf("eviction manager: failed to get summary stats: %v", err)
return nil
}
......@@ -418,7 +418,7 @@ func (m *managerImpl) reclaimNodeLevelResources(signalToReclaim evictionapi.Sign
if len(nodeReclaimFuncs) > 0 {
summary, err := m.summaryProvider.Get(true)
if err != nil {
glog.Errorf("eviction manager: failed to get get summary stats after resource reclaim: %v", err)
glog.Errorf("eviction manager: failed to get summary stats after resource reclaim: %v", err)
return false
}
......
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