mirror of https://github.com/status-im/consul.git
avoid 'panic: Log in goroutine after TestCacheGet_refreshAge has completed' (#7276)
This commit is contained in:
parent
80b1165976
commit
12876983cf
|
@ -934,15 +934,12 @@ func TestCacheGet_refreshAge(t *testing.T) {
|
||||||
Return(func(o FetchOptions, r Request) FetchResult {
|
Return(func(o FetchOptions, r Request) FetchResult {
|
||||||
idx := atomic.LoadUint64(&index)
|
idx := atomic.LoadUint64(&index)
|
||||||
if atomic.LoadUint64(&shouldFail) == 1 {
|
if atomic.LoadUint64(&shouldFail) == 1 {
|
||||||
t.Logf("Failing Fetch at index %d", idx)
|
|
||||||
return FetchResult{Value: nil, Index: idx}
|
return FetchResult{Value: nil, Index: idx}
|
||||||
}
|
}
|
||||||
if o.MinIndex == idx {
|
if o.MinIndex == idx {
|
||||||
t.Logf("Sleeping Fetch at index %d", idx)
|
|
||||||
// Simulate waiting for a new value
|
// Simulate waiting for a new value
|
||||||
time.Sleep(5 * time.Millisecond)
|
time.Sleep(5 * time.Millisecond)
|
||||||
}
|
}
|
||||||
t.Logf("Returning Fetch at index %d", idx)
|
|
||||||
return FetchResult{Value: int(idx * 2), Index: idx}
|
return FetchResult{Value: int(idx * 2), Index: idx}
|
||||||
}, func(o FetchOptions, r Request) error {
|
}, func(o FetchOptions, r Request) error {
|
||||||
if atomic.LoadUint64(&shouldFail) == 1 {
|
if atomic.LoadUint64(&shouldFail) == 1 {
|
||||||
|
|
Loading…
Reference in New Issue