-
Notifications
You must be signed in to change notification settings - Fork 7.3k
Conversation
The issue does not exist in Node.js 0.8; it looks like a Node.js 0.10 regression. |
For all those who are concerned about this: use the |
This looks like something that should just get fixed and back-ported to v0.10. |
I meant, still an issue in 0.10.0 to 0.10.30 :) |
@dougwilson do you mean the dethroy module? |
@aheckmann |
Seems weird this fd leak fix didn't make it into 0.10.31 :/ |
@rlidwka perhaps we could have a test? |
@indutny , how do you suggest to make one? I could do |
Hm... I wonder if we could limit number of fds programmatically. We do have |
Any update on this? Will this ever make it into a 0.10 release? The leak makes it impossible to prevent |
How about updating the PR to use |
Doesn't work, because leaked fds don't get listed in that array: |
Darn |
@indutny @tjfontaine any recommendations for this PR's tests? The PR fixes a regressions between node 0.8 and 0.10 where 0.10 will leak |
Oh, oh, can we finally get this into a 0.10 patch release??? I see one is cooking up in the v0.10 branch. It'd be nice to have non-leaky things :) |
Any test implementation suggestions yet? |
@indutny @tjfontaine any suggestions for how the test can be done? |
This is a big source of At the very least, this needs to be addressed before 0.12 if you're not going to fix it in 0.10. |
@piscisaureus @indutny ... looks like this went stale but nothing was ever changed in v0.10 or v0.12. |
@jasnell this is fixed in io.js, I'll try to dig up the commit later. |
Yep saw that. We may want to backport the fix. But this particular PR can be closed. |
defensive programming is bad sometimes :)
this leaks:
this doesn't:
all details are here somewhere: pillarjs/send#55
I wonder how do I write tests for those...