We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0b2049 commit b23b931Copy full SHA for b23b931
pkg/kv/kvserver/replicate_queue_test.go
@@ -15,6 +15,7 @@ import (
15
"os"
16
"path/filepath"
17
"regexp"
18
+ "runtime"
19
"strconv"
20
"strings"
21
"sync/atomic"
@@ -221,8 +222,10 @@ func TestReplicateQueueRebalanceMultiStore(t *testing.T) {
221
222
})
223
}
224
for _, testCase := range testCases {
-
225
t.Run(testCase.name, func(t *testing.T) {
226
+ // TODO(pav-kv): remove this when we know why the test is too slow in CI.
227
+ t.Logf("GOMAXPROCS: %d", runtime.GOMAXPROCS(0))
228
+
229
if testCase.storesPerNode > 1 {
230
// 8 stores with active rebalancing can lead to failed heartbeats due
231
// to overload. Skip under stress when running the multi-store variant.
0 commit comments