fix: preserve FastStream schema metadata in FastAPI dependants - #2
Merged
IvanKirpichnikov merged 2 commits intoJul 30, 2026
Conversation
Member
|
Hi. Thanks for the Pull Request. I'm sorry for the late feedback. Can you please do a separate test for Thank you in advance! |
Contributor
Author
|
Thanks! I moved the regression coverage to |
IvanKirpichnikov
merged commit Jul 30, 2026
62c755a
into
faststream-community:develop
6 checks passed
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.
Summary
Dependantdataclass field when extending it for FastStreammodel,custom_fields, andflat_paramsmetadata required by FastStream schema generationProblem
FastAPI's slotted
Dependantno longer accepts the extra metadata attributes that FastStream expects when parsing handler parameters. After the compatibility update, typed subscriber schema generation reachesparse_handler_params()without a model and fails with anAssertionError.Solution
Create a small
Dependantsubclass for the FastStream-specific metadata and initialize it from the native FastAPI dataclass fields that participate in initialization. This preserves FastAPI's dependency information while restoring the metadata consumed by FastStream.Testing
developAdditional coverage
The complete non-connected suite and Rabbit in-memory integration tests passed locally. Broker-backed connected tests are covered by the repository's upstream CI matrix.