We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9dd952b commit 61571efCopy full SHA for 61571ef
.github/workflows/ci-br.yml
@@ -1,10 +1,14 @@
1
name: TiKV-BR
2
on:
3
push:
4
- branches: main
+ branches:
5
+ - main
6
+ - br-release-*
7
paths: br/**
8
pull_request:
9
10
11
12
13
14
permissions:
br/pkg/restore/split_test.go
@@ -24,6 +24,11 @@ import (
24
"google.golang.org/grpc/status"
25
)
26
27
+var defaultSpliterCfg = restore.SpliterConfig{
28
+ GRPCMaxRecvMsgSize: 1024 * 1024,
29
+ SplitRegionMaxKeys: 16,
30
+}
31
+
32
type TestClient struct {
33
mu sync.RWMutex
34
stores map[uint64]*metapb.Store
0 commit comments