-
Notifications
You must be signed in to change notification settings - Fork 2.9k
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
[Core] Updates to multipart support #10487
Conversation
Can one of the admins verify this patch? |
FYI @pakrym |
@@ -194,7 +194,8 @@ def run(self, request, **kwargs): | |||
:return: The PipelineResponse object | |||
:rtype: ~azure.core.pipeline.PipelineResponse | |||
""" | |||
self._prepare_multipart_mixed_request(request) | |||
multipart_options = kwargs.pop("multipart_options", None) or {} |
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.
Do we want this parameter to be hidden?
Separated first part out into separate PR to be merged first: |
Is this one done or still needed? I saw it referenced in another bug that sounded completed. |
Thanks @Petermarcu - this is still needed (though part of it was moved out into another PR and merged). I will get this one updated and ready for review. |
Includes fixes for #10484 and #10485
Also contributes to #9534