mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-04-05 09:59:24 +00:00
Switch to longer timeout so it's unlikely to impact users.
This commit is contained in:
parent
2d81ddc297
commit
ebed5100b9
@ -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.
|
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user