]> git.saurik.com Git - apt.git/commitdiff
* apt-pkg/acquire.cc:
authorMichael Vogt <michael.vogt@ubuntu.com>
Thu, 28 May 2009 15:52:10 +0000 (17:52 +0200)
committerMichael Vogt <michael.vogt@ubuntu.com>
Thu, 28 May 2009 15:52:10 +0000 (17:52 +0200)
  - make the max pipeline depth of the acquire queue configurable
    via Acquire::Max-Pipeline-Depth

apt-pkg/acquire.cc
debian/changelog

index 2e6bd3401f1a913621ca381f1c6ac7747ebbc5bb..dc1599a6182153b9ad7e2126a530361c1ca991fa 100644 (file)
@@ -621,7 +621,7 @@ bool pkgAcquire::Queue::Startup()
          added other source retry to have cycle maintain a pipeline depth
          on its own. */
       if (Cnf->Pipeline == true)
          added other source retry to have cycle maintain a pipeline depth
          on its own. */
       if (Cnf->Pipeline == true)
-        MaxPipeDepth = 1000;
+        MaxPipeDepth = _config->FindI("Acquire::Max-Pipeline-Depth",1000);
       else
         MaxPipeDepth = 1;
    }
       else
         MaxPipeDepth = 1;
    }
index d3d28d0dc16f539a40abc0fd9e616bbc8b301645..8958bdfb7c0b55813e3a3bd92252e918426bda27 100644 (file)
@@ -1,3 +1,11 @@
+apt (0.7.20.2ubuntu8) UNRELEASEDkarmic; urgency=low
+
+  * apt-pkg/acquire.cc:
+    - make the max pipeline depth of the acquire queue configurable
+      via Acquire::Max-Pipeline-Depth
+
+ -- Michael Vogt <michael.vogt@ubuntu.com>  Thu, 28 May 2009 17:51:42 +0200
+
 apt (0.7.20.2ubuntu7) karmic; urgency=low
 
   * fix problematic use of tolower() when calculating the version 
 apt (0.7.20.2ubuntu7) karmic; urgency=low
 
   * fix problematic use of tolower() when calculating the version