Merge pull request #6704 from heyitsanthony/proxy-broadcast-race

grpcproxy: fix race on watcher revision
This commit is contained in:
Anthony Romano 2016-10-24 09:17:29 -07:00 committed by GitHub
commit 06e2ce116c
2 changed files with 6 additions and 6 deletions

View File

@ -68,10 +68,14 @@ func (wg *watcherGroup) broadcast(wr clientv3.WatchResponse) {
}
// add adds the watcher into the group with given ID.
// The current revision of the watcherGroup is returned.
// The current revision of the watcherGroup is returned or -1
// if the watcher is at a revision prior to the watcher group.
func (wg *watcherGroup) add(rid receiverID, w watcher) int64 {
wg.mu.Lock()
defer wg.mu.Unlock()
if wg.rev > w.rev {
return -1
}
wg.receivers[rid] = w
return wg.rev
}

View File

@ -102,11 +102,7 @@ func (wgs *watchergroups) maybeJoinWatcherSingle(rid receiverID, ws watcherSingl
group, ok := wgs.groups[ws.w.wr]
if ok {
if ws.w.rev >= group.rev {
group.add(receiverID{streamID: ws.sws.id, watcherID: ws.w.id}, ws.w)
return true
}
return false
return group.add(receiverID{streamID: ws.sws.id, watcherID: ws.w.id}, ws.w) != -1
}
if ws.canPromote() {