-
Notifications
You must be signed in to change notification settings - Fork 7.3k
Https.request sporadically fails with "Cannot call method 'emit' of undefined" error #670
Comments
i think you're not listening for the error event. |
I believe I am. My code basically looks like the following. Should I be doing something differently?
|
Same happens in my code and I'm also listening to the request error event. |
please check again on v0.4 HEAD, we've made a lot of changes recently |
great seems to work in current v0.4 HEAD! |
closing. reopen if it persists. |
I'm no longer seeing the issue with v0.4 HEAD either... Although I didn't have a reproducible test case to begin with, so I can't say with 100% certainty that it is fixed. It's not obvious to me from looking at the source that the recent code changes would have fixed this. Someone who is closer to the code I referenced above might want to take a look and try to deduce whether this issue could still happen with the latest code. |
This issue is definitely still happening for me on v0.4 HEAD. The current stack trace follows. I wish I had a reproducible test case to provide, but the server I am connecting to is not under my control and I am not exactly sure what is causing this. My theory is still that it is due to the server occasionally not doing a proper shutdown of the SSL connection. TypeError: Cannot call method 'emit' of undefined |
I have still the same problem while talking with a Python Gevent SSL server. |
Addition: It works with the 0.4.2 release but not with the v4.0 head anymore. |
So you are saying that you do not see the problem with node 0.4.2? If that is the case, I will try 0.4.2 and see if it is fixed for me as well. |
Yes exactly try if it works for you with 0.4.2. |
need a reproducible test. also we just landed an important fix please try again with v0.4 HEAD or v0.4.3 which I will release today. |
No unfortunately not. Still not fixed for me while testing an https connection with a Python Gevent server. The server complains: "error: [Errno 104] Connection reset by peer" |
Hi webholics, so do I understand correctly that you are saying now that you are still seeing the problem in 0.4.2? Are you able to provide a reproducible test case? It is going to be difficult for me as the servers I am seeing this with are not under my control, but I will see if I can come up with something. |
No for me the error is there with the current v0.4 HEAD but not for 0.4.2. So please test with the 0.4.2 release if that version works for you. |
OK, I will try it. Probably will wait for v0.4.3 though since that is going to be available soon. |
@ry: here is a test that trigger the error each time: https://gist.github.com/901709 |
I don't know if this helps. Without Content-Length I get this error. |
@jeremys, I can reproduce from that, thanks. Attempting to make a test out of it... |
I've pushed out a tentative fix in 9ccf0e5. I haven't been able to come up with a way to reproduce locally |
Still no change for me, still getting: TypeError: Cannot call method 'emit' of undefined |
@webholics: Is it failing with the gist I provided? https://gist.github.com/901709 If not, could you provide a way to reproduce the issue? For me, I can't reproduce this bug now. |
Ok your gist doesn't fail for me either. Its the setTimeout(..., 0); which fixes the error for me. |
So you mean with my gist without setTimeout you still have the error? Are you sure you are on the v0.4 branch? |
Update: It seems fixed for me with any external HTTPS server but not for https://localhost:443. @jeremys |
@webholics, is it possible to distil that down into something i can test? |
@ry I've created a full test which fails roughly 1 out of 10. Unfortunately you have to install Python gevent locally. |
@webholics, I can't repeat. If you can please strace the error occuring |
That is all I get: node.js:134 throw e; // process.nextTick error, or 'error' event on first tick ^ TypeError: Cannot call method 'emit' of undefined at CleartextStream. (http.js:1201:9) at CleartextStream.emit (events.js:81:20) at Socket.onerror (tls.js:874:17) at Socket.emit (events.js:64:17) at Array. (net.js:824:27) at EventEmitter._tickCallback (node.js:126:26) |
mmhh today i ran in the same issue, so i played with this: https://gist.github.com/915603 in the http.js below (1187 (4.5)) [...]socket.on('error'[...], i found this nice statement:
so just added another nice statement above:
i do not really exactly know whats goin on here. Perhaps the server closes the socket to early. But for me this return-statement made my day. can you copy that? |
i know there is an error. but for me it seems to be obvious:
that you can't write an error back to the client in this case, or am i mixin something? |
@ry thank :D |
Is this bug now fixed for all of you? Because for me it is definitely not. |
the latest 0.4.6 fixed the bug for me |
@marsch I played again with https://gist.github.com/915603 and added your return statement before assert(0); in http.js Now I'm able to catch the error with response.socket.on('error',..). It returns the following error: { stack: [Getter/Setter], arguments: undefined, type: undefined, message: 'ECONNRESET, Connection reset by peer', errno: 104, code: 'ECONNRESET', syscall: 'read' } Maybe this helps? |
please try the above patch |
Great, seems fixed for me now, too. I can't reproduce the error anymore. |
I've updated to v0.4 HEAD and am still occasionally seeing this error. Stack trace follows. Once again, unfortunately I do not control the server side of the conversation, so I am not exactly sure what is happening or how to reproduce it, but it does seem that there is still an error condition out there which is not being handled. TypeError: Cannot call method 'emit' of undefined |
I get the same error on node v0.4.6 Stack trace: TypeError: Cannot call method 'emit' of undefined |
Can someone try this with 0.5 HEAD? Otherwise I'd like to close it. |
+1 |
Closing, stale (and fixed). If anyone is still experiencing issues, please report them. |
Remove test file that has been in disabled from its very first commit (9ccf0e5) in 2011. It is a test for nodejs/node-v0.x-archive#670 from 2011. There are no assertions in the test. In that regard, it is more debugging code than a test.
Remove test file that has been in disabled from its very first commit (9ccf0e5) in 2011. It is a test for nodejs/node-v0.x-archive#670 from 2011. There are no assertions in the test. In that regard, it is more debugging code than a test. PR-URL: #2841 Reviewed-By: Brian White <[email protected]> Reviewed-By: Yosuke Furukawa <[email protected]>
Remove test file that has been in disabled from its very first commit (9ccf0e5) in 2011. It is a test for nodejs/node-v0.x-archive#670 from 2011. There are no assertions in the test. In that regard, it is more debugging code than a test. PR-URL: #2841 Reviewed-By: Brian White <[email protected]> Reviewed-By: Yosuke Furukawa <[email protected]>
Remove test file that has been in disabled from its very first commit (9ccf0e5) in 2011. It is a test for nodejs/node-v0.x-archive#670 from 2011. There are no assertions in the test. In that regard, it is more debugging code than a test. PR-URL: #2841 Reviewed-By: Brian White <[email protected]> Reviewed-By: Yosuke Furukawa <[email protected]>
This is observed with node 0.4.0 on cygwin. I am calling https.request to connect to a server, and sporadically am experiencing the following exception:
node.js:116
throw e; // process.nextTick error, or 'error' event on first tick
^
TypeError: Cannot call method 'emit' of undefined
at CleartextStream. (http.js:1135:9)
at CleartextStream.emit (events.js:42:17)
at Socket.onerror (tls.js:809:17)
at Socket.emit (events.js:42:17)
at Array. (net.js:799:27)
at EventEmitter._tickCallback (node.js:108:26)
I did some debugging and I believe that what is happening is that the server I am connecting to is sometimes not doing an orderly shutdown of the SSL conversation. This is causing an ECONNABORTED error at my node client. The catch is that the response has already been received and hence some cleanup of the node socket structure has already occurred within node, leaving it with nothing to emit the error event to.
At a code level, take a look at http.js. The crash I am seeing is happening at line 1148, where the code tries to emit the error event on the request object, which is null. It is null because, prior to the error event being emitted on the socket, the listener for the end event on the response (line 1244) was invoked, which cleans up the socket (detachSocket at line 1256). So the code as currently implemented is not expecting that an error event on the socket can be received after the full response has been received.
The text was updated successfully, but these errors were encountered: