Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/cura/API
diff options
context:
space:
mode:
authorJaime van Kessel <nallath@gmail.com>2021-04-30 11:51:15 +0300
committerJaime van Kessel <nallath@gmail.com>2021-04-30 11:51:15 +0300
commitc800c2850cde6349b5049773003c134ac5ebdadf (patch)
tree7ee2631b833526192189f3f9daa44598df01e3c4 /cura/API
parent653dd42e871f05c0b54001caad4ceb38663a4051 (diff)
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
Diffstat (limited to 'cura/API')
-rw-r--r--cura/API/Account.py2
1 files changed, 1 insertions, 1 deletions
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)