-
Notifications
You must be signed in to change notification settings - Fork 114
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
Goroutine leak #165
Comments
Merged
@3mard, Thank you for your careful investigation! |
But that change made |
Sorry I made a mistake #167 should fix it However |
Thank you, it works. |
This was
linked to
pull requests
Dec 25, 2023
Merged
Merged
Sure thing :) should we close this issue now ? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I've noticed that running the speed test in a loop can cause a goroutine/memory leak
Consider the following code being run in a loop (sequentially )
Will result in an increasing goroutines count that seems to never decrease, eg:
Upon my investigation I found the following function that seems to me to be the source of the leak
The problem lays in
_, err = s.Context.doer.Do(req)
, According to the docsThe text was updated successfully, but these errors were encountered: