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
diff options
context:
space:
mode:
authorJaime van Kessel <nallath@gmail.com>2020-08-25 17:07:46 +0300
committerJaime van Kessel <nallath@gmail.com>2020-08-25 17:07:46 +0300
commit6f3298385f96170c6507fc0abc3e97d844ce4f77 (patch)
treefae511f03538c6061d1c28c1cba971e9ab7d9d9c /plugins/UM3NetworkPrinting
parentd021fd10fb1b9fcb447963f5ac962b6dc79c2e23 (diff)
Increase timeout time for the cluster output
We got reports that 10 seconds can cause connection to be lost
Diffstat (limited to 'plugins/UM3NetworkPrinting')
-rw-r--r--plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py b/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py
index 48e552241a..9288b4c4b0 100644
--- a/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py
+++ b/plugins/UM3NetworkPrinting/src/Network/LocalClusterOutputDevice.py
@@ -41,7 +41,7 @@ class LocalClusterOutputDevice(UltimakerNetworkedPrinterOutputDevice):
connection_type=ConnectionType.NetworkConnection,
parent=parent
)
-
+ self._timeout_time = 30
self._cluster_api = None # type: Optional[ClusterApiClient]
self._active_exported_job = None # type: Optional[ExportFileJob]
self._printer_select_dialog = None # type: Optional[QObject]