summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2009-06-09 16:14:21 +0200
committerMichael Vogt <michael.vogt@ubuntu.com>2009-06-09 16:14:21 +0200
commit6ce7261259132f11fc93af104754e8cfc540bf13 (patch)
treee9fe02711ed84c3aaeec281a5a37695779eb471a
parenta9b5e24b6bb392c4de88d965c33120d4a7fcb4f6 (diff)
* apt-pkg/acquire.cc:
- make the max pipeline depth of the acquire queue configurable via Acquire::Max-Pipeline-Depth
-rw-r--r--apt-pkg/acquire.cc2
-rw-r--r--debian/changelog7
2 files changed, 8 insertions, 1 deletions
diff --git a/apt-pkg/acquire.cc b/apt-pkg/acquire.cc
index 2e6bd3401..bafba337e 100644
--- a/apt-pkg/acquire.cc
+++ b/apt-pkg/acquire.cc
@@ -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)
- MaxPipeDepth = 1000;
+ MaxPipeDepth = _config->FindI("Acquire::Max-Pipeline-Depth",10);
else
MaxPipeDepth = 1;
}
diff --git a/debian/changelog b/debian/changelog
index 3678e33f2..30e7b7591 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -10,6 +10,13 @@ apt (0.7.21) UNRELEASED; urgency=low
configure-index.
[ Michael Vogt ]
+ * 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
+
+ [ Michael Vogt ]
* apt-pkg/indexcopy.cc:
- support having CDs with no Packages file (just a Packages.gz)
by not forcing a verification on non-existing files