Switch to longer timeout so it's unlikely to impact users.

This commit is contained in:
Itamar Turner-Trauring 2023-04-25 08:16:12 -04:00
parent 2d81ddc297
commit ebed5100b9
2 changed files with 3 additions and 3 deletions

View File

@ -1 +1 @@
The command-line tools now have a 60-second timeout on individual network reads/writes/connects; previously they could block forever in some situations.
The command-line tools now have a 300-second timeout on individual network reads/writes/connects; previously they could block forever in some situations.

View File

@ -54,9 +54,9 @@ def do_http(method, url, body=b""):
assert body.read
scheme, host, port, path = parse_url(url)
if scheme == "http":
c = http_client.HTTPConnection(host, port, timeout=60, blocksize=65536)
c = http_client.HTTPConnection(host, port, timeout=300, blocksize=65536)
elif scheme == "https":
c = http_client.HTTPSConnection(host, port, timeout=60, blocksize=65536)
c = http_client.HTTPSConnection(host, port, timeout=300, blocksize=65536)
else:
raise ValueError("unknown scheme '%s', need http or https" % scheme)
c.putrequest(method, path)