From acd662808d893a64cc3e2fbd0d56e62043ce85b3 Mon Sep 17 00:00:00 2001 From: Timothee 'TTimo' Besset <ttimo@ttimo.net> Date: Fri, 5 Jul 2024 10:38:12 -0600 Subject: [PATCH] raise timeout from 2s to 5s, is a little low for slow wifi hosts --- client/devkit_client/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/devkit_client/__init__.py b/client/devkit_client/__init__.py index 56d89f9..60afa4d 100644 --- a/client/devkit_client/__init__.py +++ b/client/devkit_client/__init__.py @@ -98,7 +98,7 @@ ASCII_LOWERCASE = str.maketrans(string.ascii_uppercase, string.ascii_lowercase) # Default urllib timeout is way too long for LAN hosts -REQUEST_TIMEOUT = 2 +REQUEST_TIMEOUT = 5 # Root of the installation - do not use getcwd! if getattr(sys, 'frozen', False): -- GitLab