les: fix distReq.sentChn double close bug (#17639)

This commit is contained in:
Felföldi Zsolt 2018-09-14 22:14:29 +02:00 committed by Felix Lange
parent 86a03f97d3
commit d4a28a13ca
1 changed files with 3 additions and 1 deletions

View File

@ -114,7 +114,9 @@ func (d *requestDistributor) loop() {
d.lock.Lock() d.lock.Lock()
elem := d.reqQueue.Front() elem := d.reqQueue.Front()
for elem != nil { for elem != nil {
close(elem.Value.(*distReq).sentChn) req := elem.Value.(*distReq)
close(req.sentChn)
req.sentChn = nil
elem = elem.Next() elem = elem.Next()
} }
d.lock.Unlock() d.lock.Unlock()