]> git.saurik.com Git - apt.git/commitdiff
http: skip requesting if pipeline is full
authorDavid Kalnischkies <david@kalnischkies.de>
Wed, 27 Jul 2016 11:25:18 +0000 (13:25 +0200)
committerDavid Kalnischkies <david@kalnischkies.de>
Wed, 27 Jul 2016 11:25:18 +0000 (13:25 +0200)
The rewrite in 742f67eaede80d2f9b3631d8697ebd63b8f95427 is based on the
assumption that the pipeline will always be at least one item short each
time it is called, but the logs in #832113 suggest that this isn't
always the case. I fail to see how at the moment, but the old
implementation had this behavior, so restoring it can't really hurt, can
it?

methods/server.cc

index 4611433881a4959b3da109ce1e4d2cc2cc00c83c..6d147fe129ccc61ed0e51fa8841de5dd62eca15a 100644 (file)
@@ -427,6 +427,8 @@ bool ServerMethod::Fetch(FetchItem *)
    decltype(PipelineDepth) CurrentDepth = 0;
    for (FetchItem const *I = Queue; I != QueueBack; I = I->Next)
       ++CurrentDepth;
+   if (CurrentDepth > AllowedDepth)
+      return true;
 
    do {
       // Make sure we stick with the same server