This repository was archived by the owner on Jan 29, 2020. It is now read-only.
- Notifications
You must be signed in to change notification settings - Fork192
Do not cast request handlers implementing middleware toRequestHandlerMiddleware#646
Merged
weierophinney merged 1 commit intozendframework:masterfromweierophinney:hotfix/645-container-pipelineNov 8, 2018
Merged
Do not cast request handlers implementing middleware toRequestHandlerMiddleware#646
weierophinney merged 1 commit intozendframework:masterfromweierophinney:hotfix/645-container-pipelineNov 8, 2018
Uh oh!
There was an error while loading.Please reload this page.
Conversation
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
…erMiddleware`Per#645, `MiddlewareContainer::get()` was incorrectly castingmiddleware that also implemented `RequestHandlerInterface` to`RequestHandlerMiddleware`. This particularly affected`Zend\Stratigility\MiddlewarePipe` instances, as they implement bothinterfaces; if the last middleware in a pipeline called on the handler,users would then encounter a "pipeline exhausted" error, because itwould be invoked as a handler, and thus have no reference to theapplication's pipeline.This change verifies that the request handler does not also implement`MiddlewareInterface` before casting.
michalbundyra approved these changesNov 8, 2018
Member
michalbundyra left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others.Learn more.
LGTM 👍
weierophinney added a commit that referenced this pull requestNov 8, 2018
weierophinney added a commit that referenced this pull requestNov 8, 2018
Forward port#646Conflicts:CHANGELOG.md
Sign up for freeto subscribe to this conversation on GitHub. Already have an account?Sign in.
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.
Per#645,
MiddlewareContainer::get()was incorrectly casting middleware that also implementedRequestHandlerInterfacetoRequestHandlerMiddleware. This particularly affectedZend\Stratigility\MiddlewarePipeinstances, as they implement both interfaces; if the last middleware in a pipeline called on the handler, users would then encounter a "pipeline exhausted" error, because it would be invoked as a handler, and thus have no reference to the application's pipeline.This change verifies that the request handler does not also implement
MiddlewareInterfacebefore casting.Fixes#645