Skip to content

Commit a47e3a2

Browse files
committed
Disable request timeouts since the old library also did have them
1 parent 4ad824c commit a47e3a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ipfsapi/client/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ def __init__(self, host=DEFAULT_HOST, port=DEFAULT_PORT, base=DEFAULT_BASE,
187187
pass
188188

189189
addr = "/{0}/{1}/tcp/{2}/{3}".format(host_type, url.hostname, url.port, url.scheme)
190-
super(Client, self).__init__(addr, base, chunk_size, **defaults)
190+
super(Client, self).__init__(addr, base, chunk_size, timeout=None, **defaults)
191191

192192

193193
def __getattribute__(self, name):

0 commit comments

Comments
 (0)