Merge pull request #87449 from SataQiu/fix-kube-proxy-20200122

kube-proxy: fix incorrect log information
This commit is contained in:
Kubernetes Prow Robot 2020-01-22 16:31:04 -08:00 committed by GitHub
commit e41bb325c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -240,7 +240,7 @@ func (c *EndpointSliceConfig) handleAddEndpointSlice(obj interface{}) {
return
}
for _, h := range c.eventHandlers {
klog.V(4).Infof("Calling handler.OnEndpointSliceUpdate %+v", endpointSlice)
klog.V(4).Infof("Calling handler.OnEndpointSliceAdd %+v", endpointSlice)
h.OnEndpointSliceAdd(endpointSlice)
}
}