Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion pkg/kv/kvserver/replicate_queue_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import (
"os"
"path/filepath"
"regexp"
"runtime"
"strconv"
"strings"
"sync/atomic"
Expand Down Expand Up @@ -221,8 +222,10 @@ func TestReplicateQueueRebalanceMultiStore(t *testing.T) {
})
}
for _, testCase := range testCases {

t.Run(testCase.name, func(t *testing.T) {
// TODO(pav-kv): remove this when we know why the test is too slow in CI.
t.Logf("GOMAXPROCS: %d", runtime.GOMAXPROCS(0))

if testCase.storesPerNode > 1 {
// 8 stores with active rebalancing can lead to failed heartbeats due
// to overload. Skip under stress when running the multi-store variant.
Expand Down
Loading