From 1fa4a74323e816ad16d416f0f4876160260833f0 Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Fri, 3 Jan 2025 11:09:52 -0600 Subject: [PATCH 1/2] Bump Docker timeout from 60s to 180s --- cpython-unix/build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpython-unix/build.py b/cpython-unix/build.py index 9bfc93ef..75ac92b9 100755 --- a/cpython-unix/build.py +++ b/cpython-unix/build.py @@ -933,7 +933,7 @@ def main(): client = None else: try: - client = docker.from_env() + client = docker.from_env(timeout=180) client.ping() except Exception as e: print("unable to connect to Docker: %s" % e, file=sys.stderr) From 93f52e9278b57563d5e3f84acc746489d6b7d774 Mon Sep 17 00:00:00 2001 From: Zanie Blue Date: Fri, 3 Jan 2025 11:21:32 -0600 Subject: [PATCH 2/2] Bump to 10m --- cpython-unix/build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpython-unix/build.py b/cpython-unix/build.py index 75ac92b9..f0234a7d 100755 --- a/cpython-unix/build.py +++ b/cpython-unix/build.py @@ -933,7 +933,7 @@ def main(): client = None else: try: - client = docker.from_env(timeout=180) + client = docker.from_env(timeout=600) client.ping() except Exception as e: print("unable to connect to Docker: %s" % e, file=sys.stderr)