Merge pull request #80 from rcoelho/close-wait-transactions

Close waits for the transactions to finish
pull/78/merge
Xiang Li 2018-02-14 11:29:54 -08:00 committed by GitHub
commit b44cfbde69
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

3
db.go
View File

@ -441,7 +441,8 @@ func (db *DB) init() error {
}
// Close releases all database resources.
// All transactions must be closed before closing the database.
// It will block waiting for any open transactions to finish
// before closing the database and returning.
func (db *DB) Close() error {
db.rwlock.Lock()
defer db.rwlock.Unlock()