Only emit event if Update actually happens
This commit is contained in:
		| @@ -105,8 +105,10 @@ func (t *table) Update(r Route) error { | |||||||
| 		return nil | 		return nil | ||||||
| 	} | 	} | ||||||
|  |  | ||||||
| 	t.routes[service][sum] = r | 	if _, ok := t.routes[service][sum]; !ok { | ||||||
| 	go t.sendEvent(&Event{Type: Update, Timestamp: time.Now(), Route: r}) | 		t.routes[service][sum] = r | ||||||
|  | 		go t.sendEvent(&Event{Type: Update, Timestamp: time.Now(), Route: r}) | ||||||
|  | 	} | ||||||
|  |  | ||||||
| 	return nil | 	return nil | ||||||
| } | } | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user