Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cannot call method 'packet' of null #337

Closed
kitek opened this issue Nov 10, 2011 · 5 comments
Closed

Cannot call method 'packet' of null #337

kitek opened this issue Nov 10, 2011 · 5 comments

Comments

@kitek
Copy link

kitek commented Nov 10, 2011

Hi, when socket.io-client call event connect_failed I got error:

TypeError: Cannot call method 'packet' of null
at Socket.packet (/opt/node-0.4.12/lib/node/socket.io-client/lib/socket.js:272:22)
at SocketNamespace.packet (/opt/node-0.4.12/lib/node/socket.io-client/lib/namespace.js:64:17)
at SocketNamespace.emit (/opt/node-0.4.12/lib/node/socket.io-client/lib/namespace.js:113:17)
at SocketNamespace.<anonymous> (/home/node/test.js:104:10)
at SocketNamespace.$emit (/opt/node-0.4.12/lib/node/socket.io-client/lib/events.js:167:15)
at SocketNamespace.onPacket (/opt/node-0.4.12/lib/node/socket.io-client/lib/namespace.js:152:14)
at Socket.onPacket (/opt/node-0.4.12/lib/node/socket.io-client/lib/socket.js:397:30)
at Transport.onPacket (/opt/node-0.4.12/lib/node/socket.io-client/lib/transport.js:81:17)
at Transport.onData (/opt/node-0.4.12/lib/node/socket.io-client/lib/transport.js:58:16)
at [object Object].stateChange (/opt/node-0.4.12/lib/node/socket.io-client/lib/transports/xhr-polling.js:81:16)
@mindon
Copy link

mindon commented May 14, 2012

it seems the issue comes in benchmark.
when the websocket response slow & the connectTimeoutTimer triggered,
the transport method is switched from websocket to xhr-polling
--- the socket status is: .connected === true, .transport === null

then if .packet method (socket.js line 293) or .onClose method (socket.js line 279) is called, the error will be thrown.

another 2 calls may throw error for the same issue:
.transport.payload around line 311
.transport.close around line 455

@mdahiemstra
Copy link

Any new thoughts on a fix? Got the same issue. But not really predictable when. Usually around 10k concurrent users but sometimes at 20+k. Has this got to do something with the client server on which running the benchmark? That it can't keep up. If I change the transport to websockets only it seems to happen less. But then i'm getting warn - client not handshaken client should reconnect messages around 17k conc. users

@xsellier
Copy link

xsellier commented Jul 3, 2014

Still happening

@rauchg
Copy link
Contributor

rauchg commented Jul 4, 2014

Does this happen in 1.0 ?

@xsellier
Copy link

xsellier commented Jul 4, 2014

I don't know, I have to use the version 0.9.6 due to dependencies.

@rauchg rauchg closed this as completed Nov 25, 2014
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants