Commit c37238ca authored by Felföldi Zsolt's avatar Felföldi Zsolt Committed by Péter Szilágyi

les: fix retriever logic (#17705)

No related merge requests found
......@@ -212,7 +212,7 @@ func (r *sentReq) stateRequesting() reqStateFn {
// no need to go to stopped state because waiting() already returned false
return nil
}
case rpSoftTimeout:
case rpSoftTimeout, rpDeliveredInvalid:
// last request timed out, try asking a new peer
go r.tryRequest()
r.lastReqQueued = true
......@@ -242,7 +242,11 @@ func (r *sentReq) stateNoMorePeers() reqStateFn {
r.stop(nil)
return r.stateStopped
}
if r.waiting() {
return r.stateNoMorePeers
}
r.stop(light.ErrNoPeers)
return nil
case <-r.stopCh:
return r.stateStopped
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment