-
Notifications
You must be signed in to change notification settings - Fork 104
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AzureBlobFileSystem: remove socket_timeout #338
Conversation
Thanks! Could you do this as a deprecation warning to avoid breaking code that was passing that? Since we use # top-level
_socket_timeout_default = object()
def __init__(self, ... socket_timeout=_socket_timeout_default, ...):
# in __init__
if socket_timeout is not _socket_timeout_default:
warnings.warn("message", FutureWarning) |
03690d2
to
2dfc102
Compare
Hi folks, how to set timeout then? For example in #112 it isn't clear what was happening, it just was closed. What if process hang on waiting data or something? How we can force methods like |
socket_timeout
option is not being usedcloses #303