* apt-pkg/acquire.cc:
authorMichael Vogt <egon@bottom>
Tue, 28 Aug 2007 08:14:43 +0000 (10:14 +0200)
committerMichael Vogt <egon@bottom>
Tue, 28 Aug 2007 08:14:43 +0000 (10:14 +0200)
  - increase MaxPipeDepth for the internal worker<->method
    communication to 1000 for the debtorrent backend

apt-pkg/acquire.cc
debian/changelog
test/pre-upload-check.py

index cbd6705..6840ae1 100644 (file)
@@ -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;
    }
index 0aca083..6357e36 100644 (file)
@@ -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
index 8131d89..2199c59 100755 (executable)
@@ -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"