From fd1d72380b1cd811bc691e589b61209395e03f65 Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Thu, 28 Apr 2016 09:56:44 +0200 Subject: [PATCH] Increased timeout of get request CURA-49 --- NetworkPrinterOutputDevice.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NetworkPrinterOutputDevice.py b/NetworkPrinterOutputDevice.py index e33105595c..189ba9b095 100644 --- a/NetworkPrinterOutputDevice.py +++ b/NetworkPrinterOutputDevice.py @@ -186,4 +186,4 @@ class NetworkPrinterOutputDevice(PrinterOutputDevice): self._progress_message.setProgress(0) def _httpGet(self, path): - return requests.get("http://" + self._address + self._api_prefix + path, timeout = 2) \ No newline at end of file + return requests.get("http://" + self._address + self._api_prefix + path, timeout = 5) \ No newline at end of file