My problem
At the end of my python script, I get a clean up error : TypeError: object NoneType can't be used in 'await' expression
Complete trace is :
Traceback (most recent call last):
File ".../lib/python3.10/weakref.py", line 667, in _exitfunc
f()
File ".../lib/python3.10/weakref.py", line 591, in __call__
return info.func(*info.args, **(info.kwargs or {}))
File ".../lib/python3.10/site-packages/fsspec/asyn.py", line 103, in sync
raise return_result
File ".../lib/python3.10/site-packages/fsspec/asyn.py", line 56, in _runner
result[0] = await coro
File ".../lib/python3.10/site-packages/adlfs/utils.py", line 78, in close_credential
await file_obj.credential.close()
TypeError: object NoneType can't be used in 'await' expression
Which is weird because, I don't do anything asynchronious.
A reproducible example
At least as much as I can:
from azure.identity import ChainedTokenCredential, ManagedIdentityCredential, AzureCliCredential
azure_cli = AzureCliCredential()
managed_identity = ManagedIdentityCredential()
CREDENTIAL_CHAIN = ChainedTokenCredential(managed_identity, azure_cli)
import pandas as pd
pd.read_parquet("abfs://blob-name@datalake.blob.core.windows.net/path_to_parquets.parquet", storage_options={"credential": credential_chain})
print("Done")
I do get the "Done" printed before failure.
My config
- ubuntu,
- python 3.10,
- azure-storage-blob==12.16.0
- pandas==2.0.0
- pyarrow==11.0.0
- adlfs==2023.9.0
My problem
At the end of my python script, I get a clean up error :
TypeError: object NoneType can't be used in 'await' expressionComplete trace is :
Which is weird because, I don't do anything asynchronious.
A reproducible example
At least as much as I can:
I do get the "Done" printed before failure.
My config