Uh oh!
There was an error while loading. Please reload this page.
Removes FIXME - #8689
Conversation
lpinca
left a comment
There was a problem hiding this comment.
Please don't change file permissions.
Fishrock123
commented
Sep 21, 2016
I feel like the comment is pointing to an underlying bug in the dgram impl if it should not be necessary. Looks like it's been there since the test was introduced in ALJCepeda@defa637 |
My apologies! The mode change was not intentional, I've reverted back to 644 and ran @Fishrock123 Yes that makes sense. I will investigate |
It's necessary to close the socket otherwise the test will hang
It's necessary to close the socket otherwise the test will hang
When the first And start listening for messages by calling I think this is why you have to
However this seems unusual to me. The other tests will work when I call Thoughts? |
Trott
commented
Sep 22, 2016
/cc @bnoordhuis I suppose... |
c133999 to
83c7a88Compare
cjihrig
left a comment
There was a problem hiding this comment.
I think this is fine. Once you start sending data, the socket becomes bound and needs to be closed.
bnoordhuis
left a comment
There was a problem hiding this comment.
LGTM and sorry for the delay, I must've missed the notification.
Can you reword the commit log to something like 'test: remove obsolete comment from dgram test'? Thanks.
cjihrig
commented
Feb 9, 2017
Should be completely unnecessary, but CI: https://ci.nodejs.org/job/node-test-pull-request/6314/ |
cjihrig
commented
Feb 9, 2017
Landed in 89f8ef2. Thanks! |
Refs: nodejs#4640 PR-URL: nodejs#8689 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Refs: nodejs#4640 PR-URL: nodejs#8689 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Refs: nodejs#4640 PR-URL: nodejs#8689 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Checklist
make -j4 test(UNIX), orvcbuild test nosign(Windows) passesAffected core subsystem(s)
Description of change
It's necessary to close the socket otherwise the test will hang
REF #4640