Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Node.js (with socket.io and express) throw "events.js:71 throw arguments[1]; // Unhandled 'error' event"

I'm running express (via nginx proxy) with socket.io and after few moments (app for some time works fine) console throw this:

events.js:71
        throw arguments[1]; // Unhandled 'error' event
                       ^
Error: socket hang up
    at createHangUpError (http.js:1360:15)
    at ServerResponse.OutgoingMessage._writeRaw (http.js:507:26)
    at ServerResponse.OutgoingMessage._send (http.js:476:15)
    at ServerResponse.OutgoingMessage.write (http.js:749:16)
    at XHRPolling.doWrite (/home/xyz/chat/node_modules/socket.io/lib/transports/xhr-polling.js:67:17)
    at XHRPolling.HTTPPolling.write (/home/xyz/chat/node_modules/socket.io/lib/transports/http-polling.js:132:8)
    at XHRPolling.Transport.onDispatch (/home/xyz/chat/node_modules/socket.io/lib/transport.js:222:10)
    at Socket.dispatch (/home/xyz/chat/node_modules/socket.io/lib/socket.js:230:38)
    at Socket.packet (/home/xyz/chat/node_modules/socket.io/lib/socket.js:214:10)
    at Socket.emit (/home/xyz/chat/node_modules/socket.io/lib/socket.js:368:15)

Any ideas?

like image 449
rgtk Avatar asked Nov 12 '22 11:11

rgtk


1 Answers

If you are using node.js version 0.8.20, then this bug was observed by many including myself.

https://github.com/LearnBoost/socket.io/issues/1160

Upgrading node.js to version 0.8.21 solves this problem.

like image 142
Jay Kumar Avatar answered Nov 15 '22 05:11

Jay Kumar