Merge pull request #4133 from gyuho/event_map_lookup

storage: fix watchable_store notify to hash-lookup once
release-2.3
Gyu-Ho Lee 2016-01-04 22:46:37 -08:00
commit be57b6b10e
1 changed files with 2 additions and 2 deletions

View File

@ -375,10 +375,10 @@ func (s *watchableStore) notify(rev int64, evs []storagepb.Event) {
we := newWatcherToEventMap(s.synced, evs)
for _, wm := range s.synced {
for w := range wm {
if _, ok := we[w]; !ok {
es, ok := we[w]
if !ok {
continue
}
es := we[w]
wr := WatchResponse{WatchID: w.id, Events: es}
select {
case w.ch <- wr: