Merge pull request #254 from lzhfromustc/12_9_GL

test: add buffer to a channel to avoid goroutine leak
pull/271/head
Piotr Tabor 2021-03-24 18:20:45 +01:00 committed by GitHub
commit 0f477ce770
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1122,7 +1122,7 @@ func TestDB_Batch(t *testing.T) {
// Iterate over multiple updates in separate goroutines.
n := 2
ch := make(chan error)
ch := make(chan error, n)
for i := 0; i < n; i++ {
go func(i int) {
ch <- db.Batch(func(tx *bolt.Tx) error {