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

Add empty connexion middleware #1502

Merged
merged 4 commits into from
Mar 31, 2022
Merged

Conversation

RobbeSneyders
Copy link
Member

Accidentally merged #1492 by rebasing on the wrong branch and pushing.
Reverted the previous merge, and opening this PR instead.

connexion/middleware/main.py Show resolved Hide resolved
"""
apps = []
for middleware in reversed(middlewares):
app = middleware(app)
Copy link
Member

Choose a reason for hiding this comment

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

How can we add configuration to the different middlewares?
Typically, middleware can have additional keyword arguments, but it's not clear to me how we can do this here? (Unless with something like functools.partial)

Copy link
Member Author

Choose a reason for hiding this comment

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

Indeed, currently functools.partial is probably the best way. Open to better options, but it might be hard without tying the implementation to specific middleware types.

I don't think we need to solve this now though. Once we get the internals working, we can still spend some time on the API we want to offer.

Copy link
Member

Choose a reason for hiding this comment

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

Yes, just wanted to raise it to be aware of if there was a straightforward solution for it.

Base automatically changed from feature/python3.10 to main March 28, 2022 21:54
@RobbeSneyders RobbeSneyders merged commit 895d3d4 into main Mar 31, 2022
@RobbeSneyders RobbeSneyders deleted the feature/connexion-middleware branch March 31, 2022 17:24
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.

None yet

2 participants