Skip to content

Commit

Permalink
added params and comments
Browse files Browse the repository at this point in the history
  • Loading branch information
mh0lt committed Apr 29, 2024
1 parent 5a0c693 commit 9d8abf6
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions requesting.go
Original file line number Diff line number Diff line change
Expand Up @@ -312,13 +312,20 @@ func (p *Peer) applyRequestState(next desiredRequestState) {
panic("changed")
}

if p.needRequestUpdate == "Peer.remoteRejectedRequest" {
// don't add requests on reciept of a reject - because this causes request back
// to potentially permanently unresponive peers - which just adds network noise. If
// the peer can handle more requests it will send an "unchoked" message - which
// will cause it to get added back to the request queue
if p.needRequestUpdate == peerUpdateRequestsRemoteRejectReason {
continue
}

existing := t.requestingPeer(req)
if existing != nil && existing != p {
if p.needRequestUpdate == "Peer.cancel" {
// don't steal on cancel - because this is triggered by t.cancelRequest below
// which means that the cancelled can immediately try to steal back a request
// it has lost which can lead to circular cancel/add processing
if p.needRequestUpdate == peerUpdateRequestsPeerCancelReason {
continue
}

Expand Down

0 comments on commit 9d8abf6

Please sign in to comment.