Browse Source

add proper exit for loop

Signed-off-by: Shihao Xia <charlesxsh@hotmail.com>
pull/10038/head
Shihao Xia 3 years ago
parent
commit
c3e7bfb813
  1. 8
      storage/remote/queue_manager_test.go

8
storage/remote/queue_manager_test.go

@ -356,6 +356,7 @@ func TestReshardRaceWithStop(t *testing.T) {
cfg := config.DefaultQueueConfig
mcfg := config.DefaultMetadataConfig
exitCh := make(chan struct{})
go func() {
for {
metrics := newQueueManagerMetrics(nil, "", "")
@ -364,6 +365,12 @@ func TestReshardRaceWithStop(t *testing.T) {
h.Unlock()
h.Lock()
m.Stop()
select {
case exitCh <- struct{}{}:
return
default:
}
}
}()
@ -372,6 +379,7 @@ func TestReshardRaceWithStop(t *testing.T) {
m.reshardChan <- i
h.Unlock()
}
<-exitCh
}
func TestReleaseNoninternedString(t *testing.T) {

Loading…
Cancel
Save