You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Error: Returning from a request handler without responding or attaching an abort handler is forbidden!
terminate called without an active exception
Aborted (core dumped)
And then it crashes the webserver.
I looked into various documentations and I tried catching the aborts but nothing seems to give me more info to resolve this issue.
The text was updated successfully, but these errors were encountered:
When binding to an uWebSockets.js App, there was an unhandled case that
could crash the server:
```
curl "http://localhost:3000/engine.io/?EIO=4&transport=websocket"
```
would result in:
```
Error: Returning from a request handler without responding or attaching an abort handler is forbidden!
terminate called without an active exception
```
Note: this does not apply to the default server based on ws, because
the error was caught elsewhere in the source code.
Related: socketio/socket.io#4250
Hello,
I am using the code of this blog post to test the integration of uwebsocketjs in socket-io server:
https://socket.io/blog/socket-io-4-4-0/#support-for-uwebsocketjs
Everything seems to be working fine but when accessing this url: http://localhost:3000/socket.io/?EIO=4&transport=websocket (to test error handling), I receive the following error message in my console:
And then it crashes the webserver.
I looked into various documentations and I tried catching the aborts but nothing seems to give me more info to resolve this issue.
The text was updated successfully, but these errors were encountered: