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
fix: capture transport reference at request time to fix response routing
The Protocol class was overwriting its transport reference when new clients
connected, causing responses to be sent to the wrong transport. This fix
captures the transport reference when a request arrives and uses that
captured reference throughout the request lifecycle.
This ensures:
- Each request's response is sent back through the correct transport
- Multiple clients can connect without interfering with each other
- Async request handling works correctly even when new connections arrive
0 commit comments