Commit fb42b20f authored by Steven Allen's avatar Steven Allen

test: disable TestPeriodicRefresh when the race detector is enabled

parent a9214b7c
......@@ -835,6 +835,9 @@ func TestPeriodicRefresh(t *testing.T) {
if testing.Short() {
t.SkipNow()
}
if detectrace.WithRace() {
t.Skip("skipping due to race detector max goroutines")
}
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment