-
Notifications
You must be signed in to change notification settings - Fork 103
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
Found go routine leak in ListBlobsFlatSegment #180
Comments
It looks like the connection is kept open, but I'm not sure whether that should really be considered a leak. I'd like to enlist the help of our Go expert @jhendrixMSFT: how should we interpret this? |
The HTTP response body must always be drained (read/closed). It looks like this doesn't happen for non-successful HTTP status codes.
Is it the case that |
@jhendrixMSFT Doesn't seem that theory is correct:
I'm trying to investigate various leaks in azure-storage-blob-go, but I'm having trouble finding out how generated code is generated |
Which version of the SDK was used?
v0.6.0/v0.9.0
Which platform are you using? (ex: Windows, Linux, Debian)
MacOS
What problem was encountered?
We found go routine leak via uber-go/goleak
How can we reproduce the problem in the simplest way?
We run the following test code.
And found there's a go routine leak as the error shows b
Please help to make sure it is a problem in sdk.
Thanks
Have you found a mitigation/solution?
no
The text was updated successfully, but these errors were encountered: