Skip to content

Commit

Permalink
core/bloombits: remove micro-sleep
Browse files Browse the repository at this point in the history
  • Loading branch information
holiman committed Sep 26, 2022
1 parent 7227c9e commit 3373ffc
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions core/bloombits/scheduler_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,9 @@ package bloombits
import (
"bytes"
"math/big"
"math/rand"
"sync"
"sync/atomic"
"testing"
"time"
)

// Tests that the scheduler can deduplicate and forward retrieval requests to
Expand Down Expand Up @@ -53,7 +51,6 @@ func testScheduler(t *testing.T, clients int, fetchers int, requests int) {
defer fetchPend.Done()

for req := range fetch {
time.Sleep(time.Duration(rand.Intn(int(100 * time.Microsecond))))
atomic.AddUint32(&delivered, 1)

f.deliver([]uint64{
Expand Down

0 comments on commit 3373ffc

Please sign in to comment.