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

Handle cases where the socket has already been assigned to the request #332

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

jaburnette
Copy link

Bun 1.2.6 introduced a ton of changes to websocket handling. As part of those changes, sockets now seem to already be assigned to the response prior to fastify-websocket attempting to assign it. The specific error it results in is:

[08:29:49.659] WARN (95250): websocket upgrade failed
    err: {
      "type": "Error",
      "message": "Socket already assigned",
      "stack":
          Error: Socket already assigned
              at unknown
              at assignSocket (node:http:1275:31)
              at onUpgrade (/Users/justin/Projects/test-project/node_modules/@fastify/websocket/index.js:114:19)
              at emit (node:events:95:22)
              at onNodeHTTPRequest (node:http:558:24)
      "name": "Error",
      "code": "ERR_HTTP_SOCKET_ASSIGNED"
    }

All this change does is conditionally assign the socket to the response if it's not already assigned.

I've tested this with both node and bun and it seems to result in the correct behavior on both now.

Checklist

Copy link
Member

@dancastillo dancastillo left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you add a test for this use case

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

Successfully merging this pull request may close these issues.

2 participants