From 9cf3f9a3f43f212307575f6dbb4b5906bb85b504 Mon Sep 17 00:00:00 2001 From: Roy Olav Purser Date: Tue, 11 May 2021 15:14:48 +0200 Subject: [PATCH] reduce connection timeout --- stream.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stream.py b/stream.py index b9f16d3..49c418d 100755 --- a/stream.py +++ b/stream.py @@ -176,7 +176,7 @@ class MainHandler(tornado.web.RequestHandler): rand.shuffle(proxy_list) for proxy_temp in proxy_list: try: - resp = requests.head(src, allow_redirects=True, proxies=proxy_temp.req, timeout=1) + resp = requests.head(src, allow_redirects=True, proxies=proxy_temp.req, timeout=(0.1, 2.0)) if resp is not None: src = resp.url except Exception as e: