-
Notifications
You must be signed in to change notification settings - Fork 484
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
Error: Adapter registry error using typescript #452
Comments
Pinning the socket.io version to 4.4.1 seems to fix this. Add the following to your
|
Had this issue also the other day and just wanted to created an issue for this as well :) Was also using the same workaround with |
I'm getting the exact same issues by simple running
|
Same issue here, |
I'm looking into it, it seems to be linked to the features included in |
I think I have narrowed down the issue to this commit and the typing changes that came with it: socketio/socket.io@891b187 |
This feature was added in `[email protected]`: ```js io.timeout(1000).emit("some-event", (err, responses) => { // ... }); ``` Thanks to this change, it will now work with multiple Socket.IO servers. Related: - socketio/socket.io@8b20457 - #445 - #452
This should be fixed by e4c40cc, included in version |
Can confirm, error is gone. |
Problem registering adapter in socketIo using typescript.
Packages
I solved the problem by doing
But it doesn't seem like the best way to me.
The text was updated successfully, but these errors were encountered: