-
Notifications
You must be signed in to change notification settings - Fork 10.1k
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
CreateListFromArrayLike called on non-object #3139
Comments
I have been seeing a bunch of these errors as well |
I will submit a PR to put a safeguard in place. |
I had this issue on a fairly high load server. Was getting a lot of uncaught exceptions. The way I fixed it was to add this line to /node_modules/socket.io/lib/socket.js if (typeof event !== 'object') return false; Above line 513, emit.apply(self, event); This seems to have fixed the issue for now but not sure if it's a good permanent solution. |
I'm also experiencing the same issue.. |
Same issue here, after a migration of my projets to a new workstation, and trying to launch my gulp tasks over a fresh node.js & npm packages installation. I tried other solutions, downgrading node.js to my last machine version, erasing & reinstall of node modules, but only jamesbachini solution works for me |
Fixed by socketio/socket.io-parser@f0a7df1, included in |
You want to:
Current behaviour
Server dies instantly, cause unknown
Steps to reproduce (if the current behaviour is a bug)
This happened passively, I found this in my error log
Expected behaviour
Handle the issue, provide more information
Setup
Other information (e.g. stacktraces, related issues, suggestions how to fix)
The text was updated successfully, but these errors were encountered: