-
Notifications
You must be signed in to change notification settings - Fork 30.1k
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
cluster, net: fix listen pipe with readable and writable in cluster #43634
cluster, net: fix listen pipe with readable and writable in cluster #43634
Conversation
Review requested:
|
807b763
to
09ab407
Compare
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.
You should also update the API docs.
The rest looks fine to me!
I think it has been described in the docs before ?
And i think it is a bug, not feature. |
Sorry, I missed those somehow. |
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.
lgtm
09ab407
to
14588b3
Compare
@mcollina @ShogunPanda @lpinca Hi, can you help trigger CI ? Thanks ! |
@theanarkh The CI is currently locked down due to upcoming security release. |
Thanks! can you help trigger CI ? |
Done sir! |
@aduh95 Hi, can you help merge this PR ? Thanks ! |
Landed in a933a75 |
PR-URL: #43634 Reviewed-By: Paolo Insogna <paolo@cowtech.it> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
PR-URL: #43634 Reviewed-By: Paolo Insogna <paolo@cowtech.it> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
PR-URL: #43634 Reviewed-By: Paolo Insogna <paolo@cowtech.it> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
PR-URL: nodejs/node#43634 Reviewed-By: Paolo Insogna <paolo@cowtech.it> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
fix listen pipe with readable and writable in cluster.
The bug can be triggered by code as follow.
The permissions of
test.sock
issrwxr-xr-x
instead ofsrwxrwxrwx
.make -j4 test
(UNIX), orvcbuild test
(Windows) passesAffected subsystem: cluster, net