我正在使用socket.io运行express(通过nginx代理),片刻之后(应用程序暂时工作正常)控制台抛出这个:
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)
有什么想法吗?
答案 0 :(得分:1)
如果你使用的是node.js版本0.8.20,那么包括我在内的许多人都会看到这个错误。
https://github.com/LearnBoost/socket.io/issues/1160
将node.js升级到版本0.8.21解决了这个问题。