instrumentation/urllib3: fix urllib3 2.0.1+ crash with many args#2002
Merged
xrmx merged 1 commit intoelastic:mainfrom Mar 13, 2024
Merged
instrumentation/urllib3: fix urllib3 2.0.1+ crash with many args#2002xrmx merged 1 commit intoelastic:mainfrom
xrmx merged 1 commit intoelastic:mainfrom
Conversation
In c1dd69e we changed the logic of update_headers taking into account a new body arg before the one for headers. The problem is that HTTPConnectionPool.urlopen did not change at all, only HTTPConnectionPool.request did so the old login update_headers was fine. Fix elastic#1928
708f229 to
28a5d72
Compare
trentm
approved these changes
Mar 12, 2024
Contributor
|
@xrmx Good Evening! Have a question about who will create the release with bugfix that you introduced? |
Member
Author
|
@tonyman19 need a couple more commits to get in and then I'll cut a new release |
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.
What does this pull request do?
In c1dd69e we changed the logic of update_headers taking into account a new body arg before the one for headers.
The problem is that HTTPConnectionPool.urlopen did not change at all, only HTTPConnectionPool.request did so the old login update_headers was fine.
Related issues
Closes #1928