Skip to content

Commit 2bf4130

Browse files
authored
Merge pull request #10371 from nextcloud/revert/9992
Revert "perf(sync): remove 3ms scheduling delay between propagation jobs"
2 parents 1e20e71 + ae7d785 commit 2bf4130

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/libsync/owncloudpropagator.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -892,7 +892,7 @@ void OwncloudPropagator::scheduleNextJob()
892892
{
893893
if (_jobScheduled) return; // don't schedule more than 1
894894
_jobScheduled = true;
895-
QMetaObject::invokeMethod(this, &OwncloudPropagator::scheduleNextJobImpl, Qt::QueuedConnection);
895+
QTimer::singleShot(3, this, &OwncloudPropagator::scheduleNextJobImpl);
896896
}
897897

898898
void OwncloudPropagator::scheduleNextJobImpl()

0 commit comments

Comments
 (0)