-
Notifications
You must be signed in to change notification settings - Fork 544
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
libuv 1.48.0: getaddrinfo('', 0): OSError: [Errno 22] Invalid argument #596
Comments
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
This comment was marked as resolved.
hroncok
changed the title
getaddrinfo('', 0): OSError: [Errno 22] Invalid argument
libuv 1.48.0: getaddrinfo('', 0): OSError: [Errno 22] Invalid argument
Feb 27, 2024
Looks like libuv/libuv@3530bcc might cause this. |
git bisect agrees |
Looks like it is expected behavior for now, so I suggest simply skip these tests for libuv >= 1.48.0:
|
This is fixed in #600 |
fantix
added a commit
that referenced
this issue
Aug 15, 2024
Changes ======= * Upgrade libuv to v1.48.0 (#600) (by @niklasr22 @fantix in 7777852 for #596 #615) Fixes ===== * Fix test_create_server_4 with Python 3.12.5 (#614) (by @shadchin in 62f9239) * Use len(os.sched_getaffinity(0)) instead of os.cpu_count() (#591) (by @avkarenow in c8531c2 for #591) * Inline _Py_RestoreSignals() from CPython (#604) (by @befeleme in 8511ba1 for #603)
Merged
edgarrmondragon
pushed a commit
to edgarrmondragon/uvloop
that referenced
this issue
Aug 19, 2024
Changes ======= * Upgrade libuv to v1.48.0 (MagicStack#600) (by @niklasr22 @fantix in 7777852 for MagicStack#596 MagicStack#615) Fixes ===== * Fix test_create_server_4 with Python 3.12.5 (MagicStack#614) (by @shadchin in 62f9239) * Use len(os.sched_getaffinity(0)) instead of os.cpu_count() (MagicStack#591) (by @avkarenow in c8531c2 for MagicStack#591) * Inline _Py_RestoreSignals() from CPython (MagicStack#604) (by @befeleme in 8511ba1 for MagicStack#603)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
PYTHONASYNCIODEBUG
in env?: yesWe are trying to update the Fedora uvloop package to 0.19.0 with Cython 3 and #587 but I was able to reproduce the failure with cython 0.29.x as well.
The tests initially passed 24 days ago with libuv 1.47.0, but now they fail with libuv 1.48.0:
I've checked the tests and they call
getaddrinfo('', 0)
. Our build runs offline.socket exception:
vanilla asyncio exception:
uvloop exception:
The text was updated successfully, but these errors were encountered: