Skip to content

Commit 61571ef

Browse files
committed
fix ci
Signed-off-by: Ping Yu <yuping@pingcap.com>
1 parent 9dd952b commit 61571ef

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

.github/workflows/ci-br.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,14 @@
11
name: TiKV-BR
22
on:
33
push:
4-
branches: main
4+
branches:
5+
- main
6+
- br-release-*
57
paths: br/**
68
pull_request:
7-
branches: main
9+
branches:
10+
- main
11+
- br-release-*
812
paths: br/**
913

1014
permissions:

br/pkg/restore/split_test.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,11 @@ import (
2424
"google.golang.org/grpc/status"
2525
)
2626

27+
var defaultSpliterCfg = restore.SpliterConfig{
28+
GRPCMaxRecvMsgSize: 1024 * 1024,
29+
SplitRegionMaxKeys: 16,
30+
}
31+
2732
type TestClient struct {
2833
mu sync.RWMutex
2934
stores map[uint64]*metapb.Store

0 commit comments

Comments
 (0)