-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
streams: disable half-duplex operation support #42005
Conversation
Let's see how JuliaLang/BumpStdlibs.jl#55 fares. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This fixes the hangs on Linux x86_64. See e.g. JuliaLang/BumpStdlibs.jl#55
Confirmed that this indeed fixes the FreeBSD Sockets tests. (CI has been in sufficiently poor shape that I'm not sure we would have been able to tell without checking manually.) Thanks! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
❤️
A stream can continue to be read after closewrite, but cannot continue to be written to after seeing EOF. Replaces JuliaLang#42004 Replaces JuliaLang#41983 Fixes JuliaLang#41942 Refs JuliaLang#40783
A stream can continue to be read after closewrite, but cannot continue to be written to after seeing EOF. Replaces JuliaLang#42004 Replaces JuliaLang#41983 Fixes JuliaLang#41942 Refs JuliaLang#40783
Replaces #42004
Replaces #41983
Fixes #41942
Refs #40783