-
-
Notifications
You must be signed in to change notification settings - Fork 9.6k
[HttpClient] Fix CurlHttpClient memory leak #38493
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
Merged
Merged
Conversation
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
Contributor
Q | A |
---|---|
Branch? | 4.4 |
Bug fix? | yes |
New feature? | no |
Deprecations? | no |
Tickets | Fix #38492 |
License | MIT |
Doc PR | - |
stof
reviewed
Oct 9, 2020
FYI: I tested this PR, it does fix the memory leak. |
nicolas-grekas
approved these changes
Oct 9, 2020
stof
approved these changes
Oct 9, 2020
derrabus
approved these changes
Oct 9, 2020
Thank you @HypeMC. |
nicolas-grekas
added a commit
that referenced
this pull request
Oct 11, 2020
…om an exception (HypeMC) This PR was merged into the 4.4 branch. Discussion ---------- [HttpClient] Content doesn't get decoded when fetched from an exception | Q | A | ------------- | --- | Branch? | 4.4 | Bug fix? | yes | New feature? | no | Deprecations? | no | Tickets | - | License | MIT | Doc PR | - My previous PR #38493 created a new bug, the content doesn't get decoded when fetched from an exception because the inflate resource gets unset: ```php <?php use Symfony\Component\HttpClient\CurlHttpClient; use Symfony\Contracts\HttpClient\Exception\ClientExceptionInterface; include __DIR__.'/symfony/vendor/autoload.php'; $client = new CurlHttpClient(); try { $client->request('GET', 'http://example.com/404'); } catch (ClientExceptionInterface $exception) { echo $exception->getResponse()->getContent(false); } ``` I've removed the part where the resource gets unset since it still might be used at some point. The test is implementation independent so I believe it should go in contracts, please correct me if I wrong. Also, I was unable to find a way to do the test without adding a new endpoint this time, any suggestions would be appreciated. Commits ------- 8fa4f85 Don't unset the inflate resource on close as it might still be needed
Merged
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.