Skip to content

Commit 0374ed5

Browse files
fix: bump max grpc size (#241)
1 parent 95240f9 commit 0374ed5

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
### Features
2+
- fix(cmp/repo-server): Increase Max GRPC message size to 200MB

cmpserver/apiclient/clientset.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import (
1616

1717
const (
1818
// MaxGRPCMessageSize contains max grpc message size
19-
MaxGRPCMessageSize = 100 * 1024 * 1024
19+
MaxGRPCMessageSize = 200 * 1024 * 1024
2020
)
2121

2222
// Clientset represents config management plugin server api clients

reposerver/apiclient/clientset.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import (
2121

2222
const (
2323
// MaxGRPCMessageSize contains max grpc message size
24-
MaxGRPCMessageSize = 100 * 1024 * 1024
24+
MaxGRPCMessageSize = 200 * 1024 * 1024
2525
)
2626

2727
// TLSConfiguration describes parameters for TLS configuration to be used by a repo server API client

0 commit comments

Comments
 (0)