-
Notifications
You must be signed in to change notification settings - Fork 21
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
LevelDB panic #29
Comments
Closing as ipfs/kubo#6186 was merged |
Actually, I'm going to re-open this and move it to go-ds-leveldb. IMO, we should support concurrent get/close. |
Appears to have resurfaced as ipfs/kubo#6880 |
willscott
added a commit
that referenced
this issue
Feb 20, 2020
Add a `sync.RWMutex` protecting the Close operation. Follows the same pattern as in go-ds-badger. Address #29 / ipfs/kubo#6880
willscott
added a commit
that referenced
this issue
Feb 25, 2020
Add a `sync.RWMutex` protecting the Close operation. Follows the same pattern as in go-ds-badger. Address #29 / ipfs/kubo#6880
willscott
added a commit
that referenced
this issue
Feb 25, 2020
Add a `sync.RWMutex` protecting the Close operation. Follows the same pattern as in go-ds-badger. Address #29 / ipfs/kubo#6880
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This may be some kind of concurrent open/close/get bug. That is, we tend to quickly open and then close the datastore when running our tests so this could be an issue triggered by trying to "get" something while closing (we ran into that with badger).
The text was updated successfully, but these errors were encountered: