-
-
Notifications
You must be signed in to change notification settings - Fork 225
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
nullable
int
model parameter treated as a file in multipart with 0.17.0, causing httpx
AttributeError
#926
Comments
Looking into this some more, the model I'm generating looks like: @_attrs_define
class TRequest:
file: Union[Unset, File] = UNSET
parent: Union[None, Unset, int] = UNSET
...
def _get_kwargs(
id: int,
*,
body: TRequest,
) -> Dict[str, Any]:
headers: Dict[str, Any] = {}
_kwargs: Dict[str, Any] = {
"method": "patch",
"url": "/t/{id}/".format(
id=id,
),
}
_body = body.to_multipart()
_kwargs["files"] = _body
_kwargs["headers"] = headers
return _kwargs When called like: sync_detailed(
1,
client=client,
body=TRequest(parent=2),
) This generates a {
'files': {'parent': 4},
'headers': {},
'method': 'patch',
'url': '/t/2/'
} And then it seems like the |
In contrast, the 0.16.0 created these {
"files": {"parent": (None, b"6", "text/plain")},
"method": "patch",
"url": "/t/2/",
} |
httpx
multipart AttributeError
generating client with 0.17.0int
model parameter treated as a file in multipart with 0.17.0, causing httpx
AttributeError
I confirmed that this bug is still present in |
The regression seems to have come from |
@dbanty Do you have any thoughts here? I think I've traced the issue about as far as I can. Thanks. |
@johnthagen any chance that #938 fixes this for you? I haven't had a chance to test it out, but your validation would be enough for me! |
@dbanty I tried this:
from #938 and regenerated the client. I did see some changes to the generated |
I drilled down into the diff between 0.16.0 and 0.17.x again some more, I found the actual line that is causing the problem. In 0.16.0, within parent = self.parent if isinstance(self.parent, Unset) else (None, str(self.parent).encode(), "text/plain") But in 0.17.x it is changed to: parent: Union[None, Unset, int]
if isinstance(self.parent, Unset):
parent = UNSET
else:
parent = self.parent And thus, this Is there perhaps a logic bug because |
int
model parameter treated as a file in multipart with 0.17.0, causing httpx
AttributeError
nullable
int
model parameter treated as a file in multipart with 0.17.0, causing httpx
AttributeError
@dbanty Curious if you had had any chance to look into the tracing down in the comment above? |
Yeah, I think the answer is quite messy and is going to require a lot of template logic. I think the right way to fix it is to completely separate out the json vs multipart template logic instead of continuing to try and reuse bits and pieces, since there are also weird things right now like checking if a value is unset even if it's required. |
@johnthagen when you get a chance, please check out #995 to see if that's closer to expected. I still have to do some cleanup, so it won't be perfect |
I first double checked that 0.19.0 stable release still causes this issue, and, as expected, it does. |
@dbanty I installed the PR using:
Regenerated the client, tested my multipart endpoint, and it worked great using this PR! 🚀 |
WIP Fix for #926 --------- Co-authored-by: Dylan Anthony <[email protected]>
This PR was created by Knope. Merging it will create a new release ### Breaking Changes #### `const` values in responses are now validated at runtime Prior to this version, `const` values returned from servers were assumed to always be correct. Now, if a server returns an unexpected value, the client will raise a `ValueError`. This should enable better usage with `oneOf`. PR #1024. Thanks @peter-greenatlas! #### Switch YAML parsing to 1.2 This change switches the YAML parsing library to `ruamel.yaml` which follows the YAML 1.2 specification. [There are breaking changes](https://yaml.readthedocs.io/en/latest/pyyaml/#defaulting-to-yaml-12-support) from YAML 1.1 to 1.2, though they will not affect most use cases. PR #1042 fixes #1041. Thanks @rtaycher! ### Features - allow Ruff 0.4 (#1031) ### Fixes #### Fix nullable and required properties in multipart bodies Fixes #926. > [!WARNING] > This change is likely to break custom templates. Multipart body handling has been completely split from JSON bodies. Co-authored-by: GitHub <[email protected]>
Describe the bug
After upgrading the client to 0.17.0 and testing out, I noticed that Multipart client handling seems to have broken.
The code in 0.16.0 was rougly:
And with 0.17.0, usage updated to:
Is this not actually being serialized to multipart at some point? The type signatures all matched, so I thought I was using it correctly. I also see in the generated
sync_detailed()
that_get_kwargs()
calls_body = body.to_multipart()
so is it right to assume that multipart should happen transparently?The model in question has parameters of type,
File
,str
,bool
, andint
.I was hoping the stacktrace might help illuminate what could be happening:
OpenAPI Spec File
(Minimimized)
Desktop:
Additional context
httpx
0.26.0The text was updated successfully, but these errors were encountered: