Skip to content
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

object NoneType can't be used in 'await' expression #470

Closed
dmkusner opened this issue May 6, 2024 · 3 comments
Closed

object NoneType can't be used in 'await' expression #470

dmkusner opened this issue May 6, 2024 · 3 comments

Comments

@dmkusner
Copy link

dmkusner commented May 6, 2024

Whenever I try to use adlfs version 2024.4.1 (only version I've ever used) my code works but on exit/cleanup it generates the following stack trace:

Traceback (most recent call last):
File "/usr/lib/python3.10/weakref.py", line 667, in _exitfunc
f()
File "/usr/lib/python3.10/weakref.py", line 591, in call
return info.func(*info.args, **(info.kwargs or {}))
File "/home/david_kusner/dmk_python/lib/python3.10/site-packages/fsspec/asyn.py", line 103, in sync
raise return_result
File "/home/david_kusner/dmk_python/lib/python3.10/site-packages/fsspec/asyn.py", line 56, in _runner
result[0] = await coro
File "/home/david_kusner/dmk_python/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

Here is some sample code that exhibits this issue. It also happens if I acquire an AzureBlobFileSystem and work with that. Note that code works -- I can read the file and print out its contents. The stack trace occurs immediately afterwards. I haven't found any way to supress it. I'm not using any async here, so not sure why an 'await' is involved.

import fsspec
from azure.identity import AzureCliCredential
from adlfs import AzureBlobFileSystem

creds = AzureCliCredential()
storage_options = {"credential": creds}

adlFile = "abfss://[email protected]/work/dkusner/foo.txt"

with fsspec.open(adlFile, **storage_options) as f:
print(f.read())

@dmkusner
Copy link
Author

dmkusner commented May 7, 2024

Saw a suggestion to use azure.identity.aio library in issue #431, which I did with success. Stack trace no longer happens with async AzureCliCredential.

@mhtrinh
Copy link

mhtrinh commented Jun 5, 2024

I am no expert to async, but when removing the await here:

await file_obj.credential.close()

it solved the issue ...

@TomAugspurger
Copy link
Contributor

Closing in favor of #431.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants