We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The change introduced by #437 has meant that the anon parameter is effectively ignored if set to False: AzureBlobFileSystem(account_name, anon=False)
anon
False
AzureBlobFileSystem(account_name, anon=False)
Should be something like this:
self.anon = anon if anon is not None else os.getenv("AZURE_STORAGE_ANON", "true").lower() not in [ "false", "0", "f", ]
or perhaps more readable:
if anon is not None: self.anon = anon else: self.anon = os.getenv("AZURE_STORAGE_ANON", "true").lower() not in [ "false", "0", "f", ]
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
The change introduced by #437 has meant that the
anon
parameter is effectively ignored if set toFalse
:AzureBlobFileSystem(account_name, anon=False)
Should be something like this:
or perhaps more readable:
The text was updated successfully, but these errors were encountered: