diff options
-rw-r--r-- | apt-pkg/acquire.cc | 2 | ||||
-rw-r--r-- | debian/changelog | 3 | ||||
-rwxr-xr-x | test/pre-upload-check.py | 7 |
3 files changed, 10 insertions, 2 deletions
diff --git a/apt-pkg/acquire.cc b/apt-pkg/acquire.cc index cbd67055d..6840ae120 100644 --- a/apt-pkg/acquire.cc +++ b/apt-pkg/acquire.cc @@ -619,7 +619,7 @@ bool pkgAcquire::Queue::Startup() added other source retry to have cycle maintain a pipeline depth on its own. */ if (Cnf->Pipeline == true) - MaxPipeDepth = 10; + MaxPipeDepth = 1000; else MaxPipeDepth = 1; } diff --git a/debian/changelog b/debian/changelog index 0aca0832d..6357e36f3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -21,6 +21,9 @@ apt (0.7.7) UNRELEASED; urgency=low - increase default mmap size * tests/local-repo: - added local repository testcase + * apt-pkg/acquire.cc: + - increase MaxPipeDepth for the internal worker<->method + communication to 1000 for the debtorrent backend [ Program translations ] - French updated diff --git a/test/pre-upload-check.py b/test/pre-upload-check.py index 8131d891e..2199c598a 100755 --- a/test/pre-upload-check.py +++ b/test/pre-upload-check.py @@ -15,7 +15,12 @@ apt_args = [] # ["-o","Debug::pkgAcquire::Auth=true"] class testAuthentication(unittest.TestCase): - + """ + test if the authentication is working, the repository + of the test-data can be found here: + bzr get http://people.ubuntu.com/~mvo/bzr/apt/apt-auth-test-suit/ + """ + # some class wide data apt = "apt-get" pkg = "libglib2.0-data" |