From 4f11f6362b6377aab13fc8da3dcf04438c132164 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gina=20H=C3=A4u=C3=9Fge?= Date: Thu, 21 Jul 2016 18:46:34 +0200 Subject: [PATCH] Saner defaults for max timeouts 10 max consecutive with 30s default communication timeout is a bit too long to wait --- src/octoprint/settings.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/octoprint/settings.py b/src/octoprint/settings.py index 36305976..c7c5c993 100644 --- a/src/octoprint/settings.py +++ b/src/octoprint/settings.py @@ -86,9 +86,9 @@ default_settings = { "sdStatus": 1 }, "maxCommunicationTimeouts": { - "idle": 5, - "printing": 10, - "long": 10 + "idle": 2, + "printing": 5, + "long": 5 }, "maxWritePasses": 5, "additionalPorts": [],