Increased default communication and connection timeouts

This commit is contained in:
Gina Häußge 2015-01-12 17:34:08 +01:00
parent 84122f9f54
commit 6880184cbb
2 changed files with 3 additions and 2 deletions

View file

@ -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

View file

@ -30,8 +30,8 @@ default_settings = {
"log": False,
"timeout": {
"detection": 0.5,
"connection": 2,
"communication": 5,
"connection": 10,
"communication": 30,
"temperature": 5,
"sdStatus": 1
},