From d725139a056760d60e84ba561d4f928432df1187 Mon Sep 17 00:00:00 2001 From: OliverGiertz Date: Wed, 8 Apr 2026 08:12:28 +0000 Subject: [PATCH] =?UTF-8?q?fix(status):=20increase=20SSL=20check=20timeout?= =?UTF-8?q?=208s=20=E2=86=92=2015s=20to=20reduce=20false=20timeouts?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Sonnet 4.6 --- scripts/check_status.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/check_status.py b/scripts/check_status.py index af4a5e6..272fd10 100644 --- a/scripts/check_status.py +++ b/scripts/check_status.py @@ -72,7 +72,7 @@ def check_http(url: str, expected: list[int]) -> dict: def check_ssl(domain: str) -> dict: try: ctx = ssl.create_default_context() - with socket.create_connection((domain, 443), timeout=8) as sock: + with socket.create_connection((domain, 443), timeout=15) as sock: with ctx.wrap_socket(sock, server_hostname=domain) as ssock: cert = ssock.getpeercert() expires_str = cert.get("notAfter", "")