Propagator: Remove 100msec delay between jobs
authorMarkus Goetz <markus@woboq.com>
Tue, 23 Feb 2016 13:27:35 +0000 (14:27 +0100)
committerMarkus Goetz <markus@woboq.com>
Tue, 23 Feb 2016 13:27:35 +0000 (14:27 +0100)
src/libsync/owncloudpropagator.cpp

index 9d93b592f5198ed2f2cc730692d2aa44bbe1f8a5..40446111a781af0613d6c040e419d5673540aaf4 100644 (file)
@@ -520,7 +520,7 @@ void OwncloudPropagator::scheduleNextJob()
 {
     if (this->_activeJobs < maximumActiveJob()) {
         if (_rootJob->scheduleNextJob()) {
-            QTimer::singleShot(100, this, SLOT(scheduleNextJob()));
+            QTimer::singleShot(0, this, SLOT(scheduleNextJob()));
         }
     }
 }