We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 458f0bf commit 9945f83Copy full SHA for 9945f83
pyiceberg/io/fsspec.py
@@ -189,9 +189,7 @@ def _adls(properties: Properties) -> AbstractFileSystem:
189
from adlfs import AzureBlobFileSystem
190
191
for key, sas_token in {
192
- key.replace(f"{ADLS_SAS_TOKEN}.", ""): value
193
- for key, value in properties.items()
194
- if key.startswith(ADLS_SAS_TOKEN) and key.endswith(".windows.net")
+ key.replace(f"{ADLS_SAS_TOKEN}.", ""): value for key, value in properties.items() if key.startswith(ADLS_SAS_TOKEN)
195
}.items():
196
if ADLS_ACCOUNT_NAME not in properties:
197
properties[ADLS_ACCOUNT_NAME] = key.split(".")[0]
0 commit comments