mirror of https://github.com/etcd-io/bbolt.git
test: add buffer to a channel to avoid the goroutine leak
parent
f6be823028
commit
981093d53c
|
@ -1122,7 +1122,7 @@ func TestDB_Batch(t *testing.T) {
|
||||||
|
|
||||||
// Iterate over multiple updates in separate goroutines.
|
// Iterate over multiple updates in separate goroutines.
|
||||||
n := 2
|
n := 2
|
||||||
ch := make(chan error)
|
ch := make(chan error, n)
|
||||||
for i := 0; i < n; i++ {
|
for i := 0; i < n; i++ {
|
||||||
go func(i int) {
|
go func(i int) {
|
||||||
ch <- db.Batch(func(tx *bolt.Tx) error {
|
ch <- db.Batch(func(tx *bolt.Tx) error {
|
||||||
|
|
Loading…
Reference in New Issue