From fe7630954e8132895f4955fbd910b04f9acf4222 Mon Sep 17 00:00:00 2001 From: Markus Goetz Date: Tue, 23 Feb 2016 14:27:35 +0100 Subject: [PATCH] Propagator: Remove 100msec delay between jobs --- src/libsync/owncloudpropagator.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libsync/owncloudpropagator.cpp b/src/libsync/owncloudpropagator.cpp index 9d93b592f..40446111a 100644 --- a/src/libsync/owncloudpropagator.cpp +++ b/src/libsync/owncloudpropagator.cpp @@ -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())); } } } -- 2.30.2