From 8b598fd8b9184ceeb135ee59cd836c31f18b2625 Mon Sep 17 00:00:00 2001 From: Adam Goldsmith Date: Sun, 10 Jun 2018 22:55:13 -0400 Subject: [PATCH] Bump CSV import timeout to 60 sec new firmware is slower I guess --- common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common.py b/common.py index ad6a4fc..9a96da5 100644 --- a/common.py +++ b/common.py @@ -23,7 +23,7 @@ def doImportRequest(ip, params=None, files=None): params=params, files=files, auth=requests.auth.HTTPDigestAuth(DOOR_USERNAME, DOOR_PASSWORD), - timeout=10, + timeout=60, verify=False) # ignore insecure SSL xml = ET.XML(r.text) if r.status_code != 200 \