File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change
1
+ ### Features
2
+ - fix(cmp/repo-server): Increase Max GRPC message size to 200MB
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ import (
16
16
17
17
const (
18
18
// MaxGRPCMessageSize contains max grpc message size
19
- MaxGRPCMessageSize = 100 * 1024 * 1024
19
+ MaxGRPCMessageSize = 200 * 1024 * 1024
20
20
)
21
21
22
22
// Clientset represents config management plugin server api clients
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ import (
21
21
22
22
const (
23
23
// MaxGRPCMessageSize contains max grpc message size
24
- MaxGRPCMessageSize = 100 * 1024 * 1024
24
+ MaxGRPCMessageSize = 200 * 1024 * 1024
25
25
)
26
26
27
27
// TLSConfiguration describes parameters for TLS configuration to be used by a repo server API client
You can’t perform that action at this time.
0 commit comments