forked from cerc-io/plugeth
les/vflux/client: fix goroutine leak in testIter (#24449)
This commit is contained in:
parent
03b7de28b2
commit
7033724522
@ -34,16 +34,20 @@ type testIter struct {
|
||||
}
|
||||
|
||||
func (i *testIter) Next() bool {
|
||||
i.waitCh <- struct{}{}
|
||||
if _, ok := <-i.waitCh; !ok {
|
||||
return false
|
||||
}
|
||||
i.node = <-i.nodeCh
|
||||
return i.node != nil
|
||||
return true
|
||||
}
|
||||
|
||||
func (i *testIter) Node() *enode.Node {
|
||||
return i.node
|
||||
}
|
||||
|
||||
func (i *testIter) Close() {}
|
||||
func (i *testIter) Close() {
|
||||
close(i.waitCh)
|
||||
}
|
||||
|
||||
func (i *testIter) push() {
|
||||
var id enode.ID
|
||||
@ -53,7 +57,7 @@ func (i *testIter) push() {
|
||||
|
||||
func (i *testIter) waiting(timeout time.Duration) bool {
|
||||
select {
|
||||
case <-i.waitCh:
|
||||
case i.waitCh <- struct{}{}:
|
||||
return true
|
||||
case <-time.After(timeout):
|
||||
return false
|
||||
|
Loading…
Reference in New Issue
Block a user