Merge pull request #69671 from mooncak/fix_kubelet

Delete duplicated words in logs
This commit is contained in:
k8s-ci-robot
2018-10-17 11:57:12 -07:00
committed by GitHub

View File

@@ -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
}