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
Fixed a “superfluous response WriteHeader call” caused when a MiddlewareErr was returned. Middleware errors now correctly return after writing the response.
Normal (non-batch) message broadcasting is optimized: a single frame with headers and payload is now queued to each connection. This avoids per-connection frame creation, payload copying, and potential fragmentation that previously increased syscalls.
broadcastQueue channel draining after closing the connection. This might speed up the GC in some scenarios.