mirror of
https://github.com/go-micro/go-micro.git
synced 2024-12-24 10:07:04 +02:00
Only emit Update event if a route was updated/added
This commit is contained in:
parent
b2577e6022
commit
a4c04d8f50
@ -87,7 +87,7 @@ func (t *table) Delete(r Route) error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
delete(t.routes[service], sum)
|
delete(t.routes[service], sum)
|
||||||
log.Debugf("Router emitting %s for route: %s", Update, r.Address)
|
log.Debugf("Router emitting %s for route: %s", Delete, r.Address)
|
||||||
go t.sendEvent(&Event{Type: Delete, Timestamp: time.Now(), Route: r})
|
go t.sendEvent(&Event{Type: Delete, Timestamp: time.Now(), Route: r})
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
@ -106,9 +106,15 @@ func (t *table) Update(r Route) error {
|
|||||||
t.routes[service] = make(map[uint64]Route)
|
t.routes[service] = make(map[uint64]Route)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if _, ok := t.routes[service][sum]; !ok {
|
||||||
|
t.routes[service][sum] = r
|
||||||
|
log.Debugf("Router emitting %s for route: %s", Update, r.Address)
|
||||||
|
go t.sendEvent(&Event{Type: Update, Timestamp: time.Now(), Route: r})
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// just update the route, but dont emit Update event
|
||||||
t.routes[service][sum] = r
|
t.routes[service][sum] = r
|
||||||
log.Debugf("Router emitting %s for route: %s", Update, r.Address)
|
|
||||||
go t.sendEvent(&Event{Type: Update, Timestamp: time.Now(), Route: r})
|
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user