[MountPointObserverCache] Update mounts less frequently

Even on fastest disks, filling up the disk in 10 seconds is unlikely.
Moreover, Plasma's "low disk" warning only polls every minute as well and Dolphin doesn't warn you about the fact that it's full.
Reduces needless wake ups of disks and network.

CCBUG: 398612

Differential Revision: https://phabricator.kde.org/D15507
This commit is contained in:
Kai Uwe Broulik 2018-10-09 13:37:10 +02:00
parent 092d08f5e8
commit c69ecab9b7

View file

@ -78,7 +78,7 @@ MountPointObserver* MountPointObserverCache::observerForUrl(const QUrl& url)
connect(observer, &MountPointObserver::destroyed, this, &MountPointObserverCache::slotObserverDestroyed);
if (!m_updateTimer->isActive()) {
m_updateTimer->start(10000);
m_updateTimer->start(60000); // 1 minute
}
connect(m_updateTimer, &QTimer::timeout, observer, &MountPointObserver::update);