-
Notifications
You must be signed in to change notification settings - Fork 551
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
UDPTransport AttributeError #207
Comments
Thanks for submitting this. Care to make a PR? |
Not really. I am not set up for uvloop development and I don't even know how to reproduce the problem. |
This looks like a real bug, still present in the current code: Line 168 in d5ad2b8
I don't understand why we need to check |
…tack#207) If the sendto() method is called after closing the transport, it bombs with an AttributeError as there is no `._address` attribute. Replacing this by `.address` is not a solution either, as we need to exit in any case otherwise the call to sendto() bombs again due to `.sock` having been set to None.
PYTHONASYNCIODEBUG
in env?: UnknownThis error was reported in a forum post:
It seems like the attribute should be
address
, not_address
.The text was updated successfully, but these errors were encountered: