From 6880184cbbcc78c327fd8087bd93d3577ecb60ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gina=20H=C3=A4u=C3=9Fge?= Date: Mon, 12 Jan 2015 17:34:08 +0100 Subject: [PATCH] Increased default communication and connection timeouts --- CHANGELOG.md | 1 + src/octoprint/settings.py | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c4a992ad..3efea600 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -111,6 +111,7 @@ * Added deletion of `*.pyc` files to `python setup.py clean` command, should help tremendously when switching branches (backported from [9e014eb](https://github.com/foosel/OctoPrint/commit/9e014eba1feffde11ed0601d9c911b8cac9f3fb0)) +* Increased default communication and connection timeouts ### Bug Fixes diff --git a/src/octoprint/settings.py b/src/octoprint/settings.py index 66f48df2..cde12287 100644 --- a/src/octoprint/settings.py +++ b/src/octoprint/settings.py @@ -30,8 +30,8 @@ default_settings = { "log": False, "timeout": { "detection": 0.5, - "connection": 2, - "communication": 5, + "connection": 10, + "communication": 30, "temperature": 5, "sdStatus": 1 },