Skip to content

Commit

Permalink
fix: bump max grpc size (#241)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikhail-klimko authored Mar 19, 2024
1 parent 95240f9 commit 0374ed5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions changelog/CHANGELOG-2.9-2024.3.19-4fec597.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
### Features
- fix(cmp/repo-server): Increase Max GRPC message size to 200MB
2 changes: 1 addition & 1 deletion cmpserver/apiclient/clientset.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (

const (
// MaxGRPCMessageSize contains max grpc message size
MaxGRPCMessageSize = 100 * 1024 * 1024
MaxGRPCMessageSize = 200 * 1024 * 1024
)

// Clientset represents config management plugin server api clients
Expand Down
2 changes: 1 addition & 1 deletion reposerver/apiclient/clientset.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import (

const (
// MaxGRPCMessageSize contains max grpc message size
MaxGRPCMessageSize = 100 * 1024 * 1024
MaxGRPCMessageSize = 200 * 1024 * 1024
)

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

0 comments on commit 0374ed5

Please sign in to comment.