Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upUDP connection fails when local_addr and remote_addr are used together #276
Labels
Comments
|
Yeah, weird. Probably was a remnant of the old UDP implementation surfaced because of the three-way merge I had to do. |
|
I've just published https://github.com/MagicStack/uvloop/releases/tag/v0.14.0rc1. Please test. The final release will be published some time next week if RC1 is OK. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
PYTHONASYNCIODEBUGin env?: YesThe following code, using local_addr and remote_addr together:
produces the following error:
If I remove the local_addr argument from the second create_datagram_endpoint, it works.
The above example works ok in Selector and Proactor.