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
Fix constructing an OpenAPI with both extracted and explicit schemas.
Until now, the explicit list of schemas replaced rather than
expanded the extracted schemas because we were calling
_handle_pydantic_schema() twice. The first time, it was mutating
the schema and leaving no info that the second call would find.
Solution: call _handle_pydantic_schema() only once, which is
more efficient anyway.
0 commit comments