]> git.saurik.com Git - apt.git/commitdiff
Fix select timeout to be 50msec instead of 0.5msec
authorMichael Vogt <mvo@debian.org>
Wed, 30 Sep 2015 13:24:47 +0000 (15:24 +0200)
committerMichael Vogt <mvo@debian.org>
Wed, 30 Sep 2015 13:24:47 +0000 (15:24 +0200)
Closes: #799857
apt-pkg/acquire.h
apt-pkg/install-progress.h

index 3e5ca41cdb88eb1aed67e17b04a8cd0424300a92..ffa70d4dcce1c89550f09d9743c9bbf2891917fa 100644 (file)
@@ -281,7 +281,7 @@ class pkgAcquire
     *
     *  \return the result of the download.
     */
-   RunResult Run(int PulseInterval=500000);
+   RunResult Run(int PulseInterval=50000000);
 
    /** \brief Remove all items from this download process, terminate
     *  all download workers, and empty all queues.
index ee03ac217a08019527d297ad7042a01299ca8142..23ddbbec63f66fa19f805a88d5c30077e43c1b67 100644 (file)
@@ -42,7 +42,7 @@ namespace Progress {
 
     virtual void Pulse() {};
     virtual long GetPulseInterval() {
-         return 500000;
+         return 50000000;
     };
 
     virtual bool StatusChanged(std::string PackageName,