Fix typo on kubernetes plugin (#4753)

- modifed -> modified

Signed-off-by: jeongwook-park <jeongwook.park@navercorp.com>
This commit is contained in:
Jeongwook Park 2021-07-15 03:29:41 +09:00 committed by GitHub
parent 39ab840263
commit faa10f61af
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -553,8 +553,8 @@ func (dns *dnsControl) GetNamespaceByName(name string) (*api.Namespace, error) {
return nil, fmt.Errorf("namespace not found")
}
func (dns *dnsControl) Add(obj interface{}) { dns.updateModifed() }
func (dns *dnsControl) Delete(obj interface{}) { dns.updateModifed() }
func (dns *dnsControl) Add(obj interface{}) { dns.updateModified() }
func (dns *dnsControl) Delete(obj interface{}) { dns.updateModified() }
func (dns *dnsControl) Update(oldObj, newObj interface{}) { dns.detectChanges(oldObj, newObj) }
// detectChanges detects changes in objects, and updates the modified timestamp
@ -569,12 +569,12 @@ func (dns *dnsControl) detectChanges(oldObj, newObj interface{}) {
}
switch ob := obj.(type) {
case *object.Service:
dns.updateModifed()
dns.updateModified()
case *object.Pod:
dns.updateModifed()
dns.updateModified()
case *object.Endpoints:
if !endpointsEquivalent(oldObj.(*object.Endpoints), newObj.(*object.Endpoints)) {
dns.updateModifed()
dns.updateModified()
}
default:
log.Warningf("Updates for %T not supported.", ob)
@ -649,7 +649,7 @@ func (dns *dnsControl) Modified() int64 {
}
// updateModified set dns.modified to the current time.
func (dns *dnsControl) updateModifed() {
func (dns *dnsControl) updateModified() {
unix := time.Now().Unix()
atomic.StoreInt64(&dns.modified, unix)
}