summaryrefslogtreecommitdiff
path: root/apt-pkg
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2009-06-17 10:21:14 +0200
committerMichael Vogt <michael.vogt@ubuntu.com>2009-06-17 10:21:14 +0200
commit38f5cfd8381dbdc761ba4758fb9c22c2e95498d6 (patch)
treed60cb6c32163772ed8cea801a8d09486317ccb8b /apt-pkg
parentaa16679ccb39598b9b4546c912af1cf8c70e529b (diff)
make the (internal) max pipeline depth of the acquire queue
configurable via Acquire::Max-Pipeline-Depth
Diffstat (limited to 'apt-pkg')
-rw-r--r--apt-pkg/acquire.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/apt-pkg/acquire.cc b/apt-pkg/acquire.cc
index dc1599a61..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 = _config->FindI("Acquire::Max-Pipeline-Depth",1000);
+ MaxPipeDepth = _config->FindI("Acquire::Max-Pipeline-Depth",10);
else
MaxPipeDepth = 1;
}