-
-
Notifications
You must be signed in to change notification settings - Fork 3k
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 #6627
Labels
kind/bug
A bug in existing code (including security flaws)
Comments
Stebalien
added a commit
that referenced
this issue
Sep 6, 2019
Stebalien
added a commit
that referenced
this issue
Sep 6, 2019
Stebalien
added a commit
that referenced
this issue
Jan 17, 2020
Stebalien
added a commit
that referenced
this issue
Jan 17, 2020
ralendor
pushed a commit
to ralendor/go-ipfs
that referenced
this issue
Jun 6, 2020
ralendor
pushed a commit
to ralendor/go-ipfs
that referenced
this issue
Jun 6, 2020
ralendor
pushed a commit
to ralendor/go-ipfs
that referenced
this issue
Jun 6, 2020
ralendor
pushed a commit
to ralendor/go-ipfs
that referenced
this issue
Jun 8, 2020
ralendor
pushed a commit
to ralendor/go-ipfs
that referenced
this issue
Jun 8, 2020
ralendor
pushed a commit
to ralendor/go-ipfs
that referenced
this issue
Jun 8, 2020
ralendor
pushed a commit
to ralendor/go-ipfs
that referenced
this issue
Jun 8, 2020
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Version information:
go-ipfs version: 0.4.22
Description:
We use ipfs as a library. Our application needs a lot of cid calculations. We use UnixfsAPI.Add with HashOnly=true option. It causes a goroutine leak. In this case UnixfsAPI.Add creates a new IpfsNode that creates pstore.Peerstore and pstore.AddrBook. pstore.AddrBook starts goroutine in its constructor and never stops one. Looks like pstore.Peerstore.Close is never invoked.
The text was updated successfully, but these errors were encountered: