From c800c2850cde6349b5049773003c134ac5ebdadf Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Fri, 30 Apr 2021 10:51:15 +0200 Subject: [PATCH] Decrease update interval to 60 sec It's the same as what the rest uses and it should decrease the load on our servers a lot --- cura/API/Account.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cura/API/Account.py b/cura/API/Account.py index 4e8c90e052..728d0690a3 100644 --- a/cura/API/Account.py +++ b/cura/API/Account.py @@ -40,7 +40,7 @@ class Account(QObject): """ # The interval in which sync services are automatically triggered - SYNC_INTERVAL = 30.0 # seconds + SYNC_INTERVAL = 60.0 # seconds Q_ENUMS(SyncState) loginStateChanged = pyqtSignal(bool)