]> Sergey Matveev's repositories - btrtrc.git/blobdiff - reader.go
Fix stalls for responsive transfer tests
[btrtrc.git] / reader.go
index 42910a869ec3c8aab53ebb30fb60c0321a277054..35d3b32c57cd661c5ff6debd83207bc4d431b60e 100644 (file)
--- a/reader.go
+++ b/reader.go
@@ -224,8 +224,11 @@ func (r *reader) readOnceAt(b []byte, pos int64, ctxErr *error) (n int, err erro
                r.log(log.Fstr("error reading torrent %s piece %d offset %d, %d bytes: %v",
                        r.t.infoHash.HexString(), firstPieceIndex, firstPieceOffset, len(b1), err))
                if !r.t.updatePieceCompletion(firstPieceIndex) {
-                       r.log(log.Fstr("piece %d completion unchanged", firstPieceIndex))
+                       r.log(log.Fstr("piece %d completion unchanged (%+v)", firstPieceIndex, r.t.piece(firstPieceIndex).completion()))
                }
+               r.t.iterPeers(func(c *Peer) {
+                       c.updateRequests()
+               })
                // Update the rest of the piece completions in the readahead window, without alerting to
                // changes (since only the first piece, the one above, could have generated the read error
                // we're currently handling).