Conversation
Synchronous throws (and rejected promises) from engine.use middlewares now reach the same callback(err) path as next(err), so they surface as MIDDLEWARE_FAILURE / connection_error instead of being lost. Fixes socketio#5263
Yahiro025
force-pushed
the
fix/engine-io-middleware-throw-5263
branch
from
September 27, 2026 02:42
245c601 to
75e29b7
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The kind of change this PR does introduce
Current behavior
Synchronous throws inside
engine.use(...)/io.engine.use(...)middlewares are not caught in_applyMiddlewares. Unlikenext(err), a thrown error never reaches the middleware failure path, so it is not reported asMIDDLEWARE_FAILURE/connection_error.Fixes #5263
New behavior
_applyMiddlewareswraps each middleware call so:callback(err)callback(err)That matches the existing
next(err)failure path (HTTP 400 +connection_errorwithMIDDLEWARE_FAILURE).Other information (e.g. related issues)
packages/engine.io/test/middlewares.jsmirroring the existingnext(err)polling case.npm test --workspace=engine.io.