Skip to content

Commit

Permalink
Update argo_index_proto.py
Browse files Browse the repository at this point in the history
ftp fsspec is not accepting timeout=0 anymore
ValueError: Non-blocking socket (timeout=0) is not supported
  • Loading branch information
gmaze committed Dec 11, 2024
1 parent 5130ac1 commit 8420462
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion argopy/stores/argo_index_proto.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ def __init__(
port=0 if urlparse(host).port is None else urlparse(host).port,
cache=cache,
cachedir=cachedir,
timeout=timeout,
timeout=self.timeout,
block_size=1000 * (2**20),
)

Expand Down

0 comments on commit 8420462

Please sign in to comment.