-
Notifications
You must be signed in to change notification settings - Fork 29.6k
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
lib: allow http.OutgoingMessage to be used in Writable.toWeb() #45642
lib: allow http.OutgoingMessage to be used in Writable.toWeb() #45642
Conversation
@cjihrig have updated the tests do review! |
Thanks. I've started the GitHub Actions CI for you. |
It appears some of the CI tests are failing working on fixing them |
Ok it seems that the changes i made are resulting in issues with duplexes somehow, trying to get to the bottom of this, if anybody has any insight on this would love to hear Thank you! |
Attempted to fix the issue by watering down the condition being checked in internal/streams/utils isWritableNodeStream utility Fixes: nodejs#44188
…to the one mentioned in the issue
f73e049
to
190611b
Compare
Have linted the commit message and fixed the reasons causing the tests with duplexes to fail, we can have another CI run Thank You |
I guess we could have CI on this PR? |
Landed in 2ec4189 |
Attempted to fix the issue by watering down the condition being checked in internal/streams/utils isWritableNodeStream utility Fixes: nodejs#44188 PR-URL: nodejs#45642 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Attempted to fix the issue by watering down the condition being checked in lib/internal/webstreams/adapters.js similar to
isWritableNodeStream utility being used in internal/streams/utils
Fixes: #44188