-
Notifications
You must be signed in to change notification settings - Fork 115
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
Mint.HTTP1
leaks socket upon receive timeout
#415
Labels
Comments
Mint.HTTP1
leaks socket upon receive timeout
whatyouhide
added a commit
that referenced
this issue
Dec 8, 2023
@fercasgal I pushed out #416, which should fix this. If we get into |
I tried your branch in our setup and it fixed the memory leak we were seeing. |
whatyouhide
added a commit
that referenced
this issue
Dec 11, 2023
Fantastic! I've released v1.5.2. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When there's a receive timeout, the
Mint.HTTP1
simply does:But the socket is still open and the calling code has no chance of closing it, since:
So the calling code believes that it has to open a new connection, and the previous one leaks.
The text was updated successfully, but these errors were encountered: